:root{
  --common_margin:60px;
  --content_top_margin:30px;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top:110px; 
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body{
  overflow-x: hidden;
}  

section{
  margin-bottom: 30px;
}

a {
text-decoration: none;
color: #333333;
}

.bottom_margin{
  margin-bottom: 125px !important;
}

@media screen and (max-width:480px) {
  
  .bottom_margin{
    margin-bottom: 40px !important;
  }
  
}

header{
  position: sticky;
  top: 0;
  z-index: 1;
}

nav{
  background-color: #000000;
  position: sticky;
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
}

.menu_logo{
  padding: 10px;
}

.menu_logo h1{
    position: relative;
    color: #FFF;
    width: 160px;
    height: 35px;
    top: -10px;
}

.menu_logo h1 span{
  color: #2735d4;
}

.menu_nav{
  margin: auto 0px;
}

.menu_nav a{
  text-decoration:none;
  color: #FFF;
  font-weight: 500;
}

.menu_nav ul{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 10vw;
}

.menu_nav ul li{
  list-style: none;
  margin: 0px 30px;
  transition: .2s ease-in-out;
}

.menu_nav ul li:hover{
  border-bottom: 1px solid #FFF;
  transform: translateY(-5px);
}

@media screen and (max-width:1418px) {
  .menu_nav ul li{
    margin: 0px 10px;
  } 
}

.menu_contact{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.menu_contact_common{
  display: flex;
  justify-content: space-around;
  margin: auto;
  background-color: #FFF;
  padding: 5px 20px;
  border-radius: 4px;
  width: 200px;
  height: auto;
}

.animation{
  transform: translate(0px, 0px);
  transition: .3s ease-in-out;
}

.animation:hover{
  transform: translate(10px, 10px);
}

.menu_contact_chatwork{
  margin-right: 15px;
}


.menu_contact_common img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.menu_contact_common p{
  margin: auto;
  font-weight: 800;
}

.menu_contact_chatwork img,.menu_contact_email img{
  margin-right: 10px;
}

.sp_humberger{
  display: none;
  cursor: pointer;
}

.ber{
  display: none;
}

.bar_1,.bar_2,.bar_3{
  width: 35px;
  height: 3px;
  background-color: #FFF;
  transition: .3s ease-in-out;
}

.bar_2{
  margin: 10px 0px;
}

.bar-active .bar_2{
  display: none;
}

.bar-active .bar_1{
  transform: rotate(-45deg) translate(0px, 0px);
}

.bar-active .bar_3{
  transform: rotate(45deg) translate(-2px, -2px);
}


@media screen and (max-width:1200px) {
  .sp_humberger{
    display: block;
    margin: auto 0px;
  }
  
  .ber{
    display: block;
  }

  .menu_nav{
    display: none;
  }
  
  .menu_contact{
    display: none;
  }
}

/* side menu hide */
.hide_menu{
  position: absolute;
  width: 0vw;
  right: 0vw;
  height: 100vh;
  background-color: #000;
  margin-left: auto;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}

.nav-active{
  position: absolute;
  width: 80vw;
  right: 0vw;
  height: 100vh;
  background-color: #000;
  margin-left: auto;
}

.hide_menu_base{
  padding: 10px;
  overflow: hidden;
}

.hide_menu_base ul{
  list-style: none;
  text-align: center;
  margin: auto auto 60px auto;
}

.hide_menu_base ul li {
  font-size: 16px;
  font-weight: 800;
  width: 100%;
  padding: 20px 0px;
}

.hide_menu_base a, .hide_menu_base ul li a {
  text-decoration: none;
}

.hide_menu_base ul li a {
  text-decoration: none;
  color: #FFF;
}

.sidemenu_btn{ 
  margin-bottom: 30px;
  width: 100%;
}


/* base width */
.base_width{
  max-width: 100%;
  margin: auto;
}

/*wrapper*/
.wrapper{
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.header_bannar{
  width: auto;
  background-color: #000;/*後で削除*/
}

.header_bannar img{
  margin: auto;
  width: 100%;
}

.header_pc{
  display: block;
}
.header_sp{
  display: none;
}

@media screen and (max-width:1200px) {
  .header_pc{
    display: none;
  }
  .header_sp{
    display: block;
  }
}

/*site title*/
.site_title h1{
  position: relative;
  text-align: center;
  font-size: 35px;
  letter-spacing: 6px;
  margin: 60px 0px;
}

/*service setting*/

.services{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 52px;
}

.service_sp{
  display: none;
}

@media screen and (max-width:1160px) {
  .services{
    display: none;
  }
  .service_sp{
    cursor: pointer;
    display: block;
  }
  
  .service_sp_img{
    margin: 16px auto;
    width: 89%;
    transform: scale(1);
    transition: .15s ease-in-out;
  }

  .service_sp_img:hover{
    transform: scale(0.95);
  }

  .service_sp_img img{
    width: 100%;
  }


}

.services_img_box{
  position: relative;
  width: calc(300px - 10px);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
  border-radius: 4px;
}

.services_img_box img{
  width: 100%;
  height: 100%;
}

.services_link{
  position: absolute;
  width: 100%;
  height: 100%;  
  top: 100%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.8);
  transition: top 0.3s ease; /* アニメーションを追加 */
}

.services div:hover .services_link{
  top: 0;
}

.link_text{
  margin-top: 40%;
  text-align: center;
  background-color: transparent;
  width: 100%;
  height: auto;
  padding: 0px 15px;
  color: #fff;
}

.link_text h2{
  font-size: 26px !important;
}

@media screen and (max-width:480px) {
  .link_text h2{
    font-size: 18px !important;
  }
  
  .link_text{
    margin-top: 10px;
  }

}

.link_text p{
  text-align: start;
}

.link_text h2 , .link_text p{
  margin-top: auto;
  padding-bottom: 10px;
  font-size: 18px;
}

.link_btn{
  position: relative;
  background-color: aqua;
  margin: 10px;
  padding: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.link_btn_effecr{
  position: absolute;
  background-color: red;
  width: 100%;
  height: 100%;
  top: 0%;
  left: -100%; 
  transition: left 0.3s ease; /* アニメーションを追加 */
}

.link_btn:hover .link_btn_effecr{
  left: 0%;
}

.link_btn a{
  text-decoration: none;
  font-weight: bold;
  color: white;
  text-align: center;
  font-size: 16px;
}

.link_btn a p{
  position: relative;
}


/* slider setting */
.slider-1_contents{
  display: flex!important;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.slider-1_contetns_img{
width: 45%;
text-align: center;
}
.slider-1 div img{
  width: 100%;
  margin: auto;
}

.slider-1_contetns_text{
  width: 50%;
}

@media screen and (max-width: 1200px) {
  
  .slider-1_contetns_img{
  width: 100%;
  text-align: center;
  }

  .slider-1_contetns_text{
    width: 100%;
  }
  
}

.slider-1_contetns_text div{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
}

.slider-1_contetns_box{
  padding: 10px;
}

.slider-1_contetns_box_bk{
  background-color: #2735d419;
}

.slider-1_contetns_text_problem{
  max-width: 112px;
  padding: 10px 40px;
  color: #FFF;
  font-weight:800;
  background-color: #707070;
  border-radius: 4px;
}
.slider-1_contetns_text_solution{
  max-width: 112px;
  padding: 10px 31px;
  color: #FFF;
  font-weight:800;
  background-color: #2735d4;
  border-radius: 4px;
}

.slider_text_common{
      padding: 14px 30px;
}





/* follow section  */
.service_follow{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width:480px) {
  .service_follow{
    display: block;
  } 
}


.service_follow_container{
  display: grid;
  text-align: center;
  gap: 14px;
  padding: 14px;
}

.service_follow_container h4{
  font-size: 23px;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.next_icon{
  margin: auto;
}

@media screen and (max-width:1200px)  {
  .service_follow{
    display: block;
  }
  
  .next_icon{
    margin: auto;
    text-align: center;
    transform: rotate(90deg);
  }
}

@media screen and (max-width:480px) {
  .next_icon{
    text-align: center;
    transform:rotate(90deg);
  } 
}

.follow_icon{
font-size: 50px !important;
}

.background01{
  width: 100%;
  background-color: #f7f7f77a;
  padding: 30px;
}


/* cta box */

.cta_box{
  background-color: rgb(69, 237, 167);
  border-radius: 4px;
  padding: 30px;
  margin: 80px auto;
}

.cta_botton{
  display: flex;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
}

.cta_text{
  text-align: center;
  margin: auto;
  margin-bottom: 34px;
}

.cta_text p{
  line-height: 38px;
  letter-spacing: 0px;
  margin-top: 10px;
}

.cta_text h3{
  font-weight: bold;
  font-size: 34px;
  padding: 10px;
}


.cta_botton{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.cta_flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.btn_width{
  width: 480px;
  height: auto;
}

.contact_form{
  background-color: #fddf00;
  padding: 20px 10px;
  border-radius: 10px;
  height: fit-content;
  text-align: center;
}

.chatwork_form{
  background-color: #fff;
  padding: 20px 10px; border-radius: 10px;
}

.chatwork_form img ,.contact_form img{
  width: 50px;
  height: 50px;
}

.chatwork_form img{
  border: 1px solid #1111116b;
  border-radius: 50%;
}

.cta_title{
  cursor: pointer;
  transition: .3s ease-in-out;
}

.cta_title:hover{
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.11);
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.11);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.11);
}

.cta_title img{
  margin: 0px 10px 0px 0px;
}

.cta_title h3{
  margin: auto 0px;
}

.cta_icon{
  width: 50px;
  height: 50px;
}

.cta_icon span{
  margin: auto;
}

@media screen and (max-width:1060px) {
  .cta_botton{
    display: block;
  }

  .cta_title {
    margin: auto;
    margin-bottom: 10px;
  }

}

@media screen and (max-width:480px) {
  .cta_text h3{
    font-size: 20px;
  }

  .cta_text p {
    line-height: 21px;
  }

  .chatwork_form img, .contact_form img {
    width: 36px;
    height: 36px;
  }

  .cta_title{
    margin-bottom:30px;
    width: 320px;
  }  

}

/* feature section */
.features_container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  background: #f7f7f77a;
}

.container_left{
  text-align: center;
  width: 44%;
}

.container_left h3{
  font-size: 32px;
  margin-bottom: 12px;
}

.container_left p{
  text-align: center;
}

.container_right img{
  border-radius: 4px;
  width: 100%;
}

.features_selection{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.features_selection_3{
  margin-top: 0px;
}


.features_selection_container{
  width: 50%;
  padding: 10px 20px;
  line-height: 5px;
}

.single_container{
  width: 100%;
}

.on_mobile{
  display: none;
}

.features_selection_container p{
  margin-top: 30px;
  line-height: 25px;
  text-align: start !important;
}

.features_selection_container h3{
  margin: 30px 0px ;
  font-size: 28px;
}

@media screen and (max-width:1124px) {

  .site_title h1 {
    position: relative;
    text-align: center;
    font-size: 22px;
    letter-spacing: 6px;
    margin: 60px 0px 30px 0px;  
  }

  .services {
    justify-content: space-evenly;
  }

  .services_img_box {
    width: calc(50% - 52px);
  }
  
  .features_selection_container{
    width: 100%;
    padding: 10px 20px;
  }

  .features_container{
    display: block;
  }
  
  .container_left{
    text-align: center;
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }
  
  .container_right{
    text-align: center;
    margin: auto;
  }
  
  .off_mobile{
    display: none;
  }
  
  .on_mobile{
    display: block;
  }
  
  .container_right img{
    border-radius: 4px;
    width: 80%;
  }
  
  .features_selection_container h3{
    font-size: 19px;
  }
  
}

@media screen and (max-width:480px) {
  .features_selection{
    display: block;
    margin-top: 0px;
  }  
  
  .features_selection_container{
    width: 100%;
  }
  .features_container{
    display: block;
  }
  
  .container_left{
    text-align: center;
    width: 90%;
    margin: auto;
  }

  .container_left h3 {
    font-size: 20px;
  }
  
  .features_selection_container h3{
    font-size: 17px;
  }
}

.tech_logo{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content:space-evenly;
}

.tech_logo div{
  width: 100px;
  height: auto;
  padding: 10px;
  margin-bottom: 4px;
  border-radius: 4px;
  border: #3333331a solid 2px;
}

.tech_logo div img{
  width: 100%;
}

/* footer settign  */

footer{
  width: 100%;
  padding: 30px;
  background-color: #000;
}

.copyright{
  width: 100%;
  margin: auto;
  text-align: center;
  color: #FFF;
}

.footer_container{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; 
}

.footer_container_left{
  width: 30%;
}

.footer_logo{
  text-align: center;
  padding: 200px;
}

.footer_container_right{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 70%;
}

.footer_links{
  text-align: center;
  margin: 20px 30px auto 30px;
}

.footer_links h3{
  color: #FFF;
}

.footer_links ul li{
  list-style: none;
  padding: 20px 10px;
  color: #FFF;
}

.footer_links ul li:hover a{
  border-bottom: #fff solid 1px;
}

.footer_links ul li a{
  color: #fff;
  text-decoration: none;
}


@media screen and (max-width:1200px) {
  .footer_container{
    display: block;
  }
    
  .footer_container_left{
    width: 100%;
  }

  .footer_logo{
    padding: 0px;
    margin: 0px auto;
  }
    
  .footer_container_right{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
  }

}



/* ------side menu setting ------ */

.sidemenu{
  position: fixed;
  top: 301px;
  right: -300px;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.sidemenu:hover{
  right: 0px;
}


.sidemenu_container{
  display: flex;
}

.sidemenu_setting{
    width: 25px;
    aspect-ratio: 1;
    background: green;
}

.sidemenu_index{
  position: relative;
}

.sidemenu_part1{
  clip-path: polygon(0 100%, 100% 0, 106% 107%);
}

.sidemenu_part2{
  position: relative;
  width: 25px;
  height: 200px;
  z-index: 1;
}

.sidemenu_part2_text{
  position: absolute;
  top: -38%;
  left: -37%;
  transform: translate(50%, 50%);
  writing-mode: vertical-rl;
  font-weight: 800;
  letter-spacing: 2px;
}

.sidemenu_part3{
  clip-path: polygon(0 0,100% 0,100% 100%);
}

.sidemenu_hide{
  width: 300px;
  height: 500px;
  padding: 25px 30px;
}

.sidemenu_color{
  background-color: antiquewhite;
}

.sidemenu_hide a{
  text-decoration: none;
  color: #111;
}

.sidemenu_hide h2,.sidemenu_hide p{
  margin-bottom: 30px;
  text-align: center;
}

.sidemenu_hide h2{
  font-size: 20px;
}

.sidemenu_hide p{
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 17px;
}

.sidemenu_ex{
  width: 100%;
  margin-bottom: 40px;
}

.sidemenu_ex_contents{
  display: flex;
  flex-direction: row;
  justify-content: start;
  margin-bottom: 8px;
  background: #FFF;
  padding: 10px 0px;
  border-radius: 4px;
}

.sidemenu_ex_contents_check{
  position: relative;
  width: 20px;
  height: 20px;
  background: #FFF; 
  margin: auto 4px;
  border-radius: 50%;
  border: #000 1px solid;
}

.sidemenu_ex_contents_text p{
  letter-spacing: 0;
  font-size: 14px;
  margin: auto;
}

.sidemenu_ex_contents_check img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
}

.sidemenu_contents {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: #FFF;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-radius: 4px;
  transition: .3s ease-in-out;
}

.sidemenu_contents:hover {
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.21);
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.21);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.21);
}

.sidemenu_contents img{
  width: 35px;
  border-radius: 50%;
  border: solid 1px #000;
}

.sidemenu_contents h3{
  margin: auto;
}

.sidemenu_shadow{
  -webkit-box-shadow: -5px 10px 5px 0px rgba(0,0,0,0.21);
  -moz-box-shadow: -5px 10px 5px 0px rgba(0,0,0,0.21);
  box-shadow: -5px 10px 5px 0px rgba(0,0,0,0.21);
}

@media screen and (max-width:1200px) {
  .sidemenu{
    display: none;
  }
}

/* price table setting */
.price_table{
  width: 100%;
  border-bottom: #00000025 solid 1px;
}

.price_title_row{
  display: flex;
  flex-direction: row;
}

.table_format{
  padding: 20px;
  background-color: #11111109; 
}

.price_title_row_text{
  width: 60%;
  font-size: 17px;
  font-weight: 800;
}

.price_title_row_price{
  width: 40%;
  text-align: center;
  border-left: #00000025 solid 1px;
}

@media screen and (max-width:1200px) {
  .price_table {
    width: 96%;
    border-bottom: #00000025 solid 1px;
    margin: auto;
  }

  .price_notice{
    width: 96%;
    margin: auto;
  }
}

/* constant_support_plan */
.constant_support_box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.constant_support{
  background-color: #eaebfb64;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 20px 10px;
  width: 32%;
}

.constant_support_center{
    border: 2px solid #1acf69;
}

.constant_support_ttl,.constant_support_price{
  text-align: center;
  padding: 5px;
  margin: auto;
  color: #111;
  font-weight: 600;
}

.constant_support_ttl h2{
  margin-bottom: 20px;
}

.constant_support_ttl p{
    letter-spacing: 2px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.constant_support_price h2{
    background-color: #999fd9;
    padding: 7px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: 1px;
    font-size: 46px;
    font-family: fantasy;
    font-weight: 500;
}

.constant_support_price h2 span{
    font-size: 16px;
    margin-left: 10px;
    font-weight: 400;
    letter-spacing: -2px;
}

.constant_support_service{
  background-color: #FFF;
  border-radius: 5px;
  padding: 30px 20px;
  width: 100%;
}

.constant_support_service div p{
  margin-bottom: 15px;
  margin-left: 60px;
}

.constant_support_service div{
  position: relative;
  border-bottom: 1px solid #1111112b;
  margin-bottom: 30px;
}

.constant_support_service div ::before{
  display: inline-block;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  margin: auto 15px auto 5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  justify-content: center;
  top: -4px;
  left: 8px;
}
.minimum h2, .minimum div ::before,.light div:first-child ::before{
  background-color: #99d99c;
  
}
.light h2, .light div ::before,.stack div:first-child ::before{
  background-color: #4c93d5;
  
}
.stack h2, .stack div ::before{
  background-color: #301098;
  
}

.constant_support_service div ::after{
    position: absolute;
    content: "✓";
    top: -2px;
    left: 22px;
    font-weight: 900;
    color: #fff;
}

@media screen and (max-width:1200px) {
  .constant_support_box{
    display: block;
  }
  .constant_support{
    width: 90%;
    margin: 20px auto; 
  }
  .constant_support_price h2{
    font-size: 31px;
  }
}

/* service contents */

.content_wrapper{
  max-width: 900px;
  margin: auto;
  margin-bottom: 30px;
}

.contents_top_margin{
 margin-top: var(--content_top_margin);
}

.thumbnail_img{
  width: 100%;
  margin: auto ;
  margin-bottom: var(--common_margin);
}

.thumbnail_img img {
  width: 100%;
}

.contents_index_ttl{
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #2735d4;
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
  width: 60%;
}

.contents_index{
  margin-bottom: var(--common_margin);
}

.contents_index ul{
  width: 60%;
  border: #0000001b 1px solid;
}

.contents_index ul li{
  cursor: pointer;
  list-style: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 18px;
  padding: 10px;
  width: 100%;
}

.contents_index ul li::before{
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2735d4;
  margin-right: 10px;
  margin-left: 5px;
  margin-top: auto;
  margin-bottom: 1px;
}

.contents_index_ribbon{
  display: flex; 
  padding: 10px;
  background-color: #0000001b;
  margin-bottom: var(--common_margin);
}

.contents_index_ribbon::before{ 
  display: block;
  content: "";
  width: 5px;
  height: 35px;
  background-color: #2735d4;
  margin-right: 20px;
}

.contents_text h1 {
  text-align: center;
  margin: 30px auto ;
}

.contents_text p {
  line-height: 30px;
  letter-spacing: 2px;
  font-size: 17px;
  padding: 0px 30px;
  margin-bottom: 13px;
}


.contents_text div{
  width: 93%;
  margin: auto;
}

.contents_text div img {
  width: 100%;
}

.modal_open{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.modal_open div{
  cursor: pointer;
  width: 23%;
}


.modal_open div img{
  width: 100%;
}

.column_2_img{
  width: 49% !important;
}



/* qa section setting */
.qa_box{
  background-color: #2735d419;
  border-radius: 10px;
  margin-top: 30px;
  padding: 30px 40px;
}

.qa_box_question,.qa_box_answer{
    align-items: center;
    display: flex;
    padding-bottom: 20px;
}

.qa_box_question{
    border-bottom: 1px solid #ccc;
}

.qa_box_label_q{
    color: #0c65bd;
    font-family: Plus Jakarta Sans, sans-serif;
    font-optical-sizing: auto;
    font-size: 67px;
    font-style: normal;
    font-weight: 500;
    font-weight: 700;
    line-height: 1.27;
    text-align: center;
    width: 46px;
}

.qa_box_question_text{
    flex: 1;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.46;
    margin-left: 50px;
}

.qa_box_label_a{
  color: #fb7c1f;
  font-family: Plus Jakarta Sans, sans-serif;
  font-optical-sizing: auto;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 500;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  width: 46px;
}

.qa_box_answer_text{
    flex: 1;
    font-size: 18px;
    line-height: 1.5;
    margin-left: 50px;
    padding-top: 8px;
}


@media screen and (max-width:1200px) {
  .qa_padding{
  padding: 0px 10px;
  }
}

@media screen and (max-width:480px) {
  .qa_box{
    padding: 30px 5px;
  }
  .qa_box_question_text{
      font-size: 21px;
      margin-left: 6px;
  }
  .qa_box_answer_text{
      margin-left: 6px;
  }
  .qa_box_label_q,.qa_box_label_a {
     font-size: 24px;
  }
}


/* contact form setting  */
.contact_from{
  margin-bottom: 60px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact_from h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #444;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-color: #4a90e2;
  outline: none;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
}

.radio-item input[type="radio"] {
  width: auto;
  margin-right: 10px;
}

.radio-item label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.required::after {
  content: " *";
  color: #e74c3c;
}

.form-footer {
  margin-top: 30px;
  text-align: center;
}

button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #357abd;
}

.hint {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .container {
      padding: 20px;
  }
}
































/* Modal styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 11;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.5s forwards;
}

@media screen and (max-width:1280px){
  .modal {
      padding-top: 224px;
  }
}

.modal-content {
  margin: auto;
  display: block;
  width: 43% !important;
  max-width: 100% !important;
}

@media screen and (max-width:1280px) {
  .modal-content {
    width: 90% !important;
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 1280px){
  .close{
      top:170px;
  }
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Fade-in and fade-out animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Lock scroll styling */
.body-lock {
  overflow: hidden;
}


/* privacy policy setting */
.privacy_policy{
  width: 100%;
  background-image: url(https://www.partka.nisiyou.com/img/privacypolicy/privacypolicy.png);
  background-size: cover;
}

.privacy_policy h1{
    color: #fff;
    text-align: center;
    margin: auto;
    padding: 150px 0px;
}

.privacy_policy_contens{
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 2px;
  line-height: 36px;
  font-weight: 400;
  margin: 60px 0px ;
  padding:30px;
  background-color:#f7f7f77a ;
}











































@media screen and (max-width:1200px) {

  .contents_index_ttl{
    width: 95%;
    margin: auto;
  }
  
  .contents_index ul{
    width: 95%;
    border: #0000001b 1px solid;
    margin: auto;
    
  }

}

@media screen and (max-width:900px) {

  .modal_open div{
    width: 47%;
  }
  

}
