@charset "utf-8";

:root {
  --blue: #009EFF;
  --white: #fff;
  --font: #41493B;
  --green: #7BC04D;
  --orange: #F96434;
}

body{
  color: var(--font);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.tell_img{
  text-align: right;
  width: 87px;
  height: 114px;
  position: fixed;
  top: 80%;
  right: 0%;
  z-index: 100;
}

.tell_img:hover{
  opacity: 0.6;
}

.fv{
  width: 100%;
  height: 90dvh;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .fv_img_wrapper{
    display: flex;
  }
}

.fv_img{
  height: 45dvh;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(51, 51, 51, 0.6)),
}

@media screen and (min-width: 1000px) {
  .fv_img{
    height: 73dvh;
    width: 50vw;
    background-position: 80% center ;
  }
}

.fv_box{
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50% , -50%);
}

@media screen and (min-width: 1000px) {
  .fv_box{
    top: 44%;
  }
}

.fv_title{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  color: var(--white);
  text-shadow: 1px 1px 3px var(--font);
}

@media screen and (min-width: 1000px) {
  .fv_title{
    font-size: 40px;
  }
}

.fv_icon_01{
  width: 100px;
  height: 100px;
}

@media screen and (min-width: 1000px) {
  .fv_icon_01{
    width: 200px;
    height: 200px;
    position: absolute;
    margin-left: 140px;
    top: -20%;
    left: -30%;
  }
}

.fv_icon_02{
  width: 312px;
  display: block;
  margin: 10px auto;
}

@media screen and (min-width: 1000px) {
  .fv_icon_02{
    width: 678px;
    margin: 30px auto;
  }
}

.fv_icon_03{
  width: 90px;
  height: 90px;
  animation:5s linear infinite rotation1;
  position: absolute;
  top: unset;
  bottom: 150px;
  left: 68%;
  z-index: 2;
  opacity: 0.7;
}

@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

@media screen and (min-width: 1000px) {
  .fv_icon_03{
    width: 170px;
    height: 170px;
    top: 70%;
    left: 80%;
    z-index: 2;
  }
}

.fv_icon_04{
  width: 90px;
  height: 90px;
  position: absolute;
  top: 75%;
  left: 68%;
  z-index: 1;
}

@media screen and (min-width: 1000px) {
  .fv_icon_04{
    width: 170px;
    height: 170px;
    top: 68%;
    left: 80%;
    z-index: 1;
  }
}



.fv_txt_box{
  width: 300px;
  margin: 17px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

@media screen and (min-width: 1000px) {
  .fv_txt_box{
    flex-wrap: nowrap;
    width: 800px;
  }
}

.fv_txt{
  font-size: 14px;
  font-weight: bold;
  color: var(--green);
  background: var(--white);
  padding: 6px 8px;
  max-width: 130px;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .fv_txt{
    font-size: 28px;
    max-width: 300px;
  }
}

.fv_wrap {
  background: var(--green);
  width: 100%;
  padding: 20px;
}

.fv_wrap_text {
  width: 100%;
 text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .fv_wrap_text {
    font-size: 26px;
  }
}

.fv_inner{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.fv_inner_txt{
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  margin-left: 6px;
}

@media screen and (min-width: 1000px) {
  .fv_inner_txt{
    font-size: 32px;
    margin-left: 10px;
  }
}

.u_fv_line{
  border: 2px solid var(--white);
  width: 42px;
}

@media screen and (min-width: 1000px) {
  .u_fv_line{
    width: 146px;
  }
}

.u_mg{
  margin-left: 10px;
}

.fz_size{
  font-size: 27px;
  margin: 0 4px;
}

@media screen and (min-width: 1000px) {
  .fz_size{
    font-size: 60px;
    margin: 0 16px;
  }
}

/* about *******************************************************************/

.section_ttl{
  margin-top: 100px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: var(--green);
}

@media screen and (min-width: 1000px) {
  .section_ttl{
    margin-top: 140px;
    font-size: 48px;
  }
}

.about_ttl{
  margin-top: 68px;
  font-size: 24px;
  font-weight: bold;
  color: var(--green);
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .about_ttl{
    font-size: 36px;
    margin-top: 80px;
  }
}

.m_about{
  font-size: 80px;
  color: var(--green);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-48% , -40%);
  z-index: -1;
  opacity: 0.2;
}

@media screen and (min-width: 768px) {
  .m_about{
    font-size: 100px;
  }
}

@media screen and (min-width: 1000px) {
  .about{
    background-image: url(../img/about_miyagi.png);
    background-position: right 50px;
    background-size: 30%;
    background-repeat: no-repeat;
  }
}

.about_copy_inner{
  padding: 0 20px;
  background-image: url(../img/about_miyagi.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .about_copy_inner{
    background-image:none;
  }
}

.about_copy_inner02{
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.about_copy{
  margin-top: 30px;
}

@media screen and (min-width: 1000px) {
  .about_copy{
    font-size: 28px;
  }
}

.swiper-slide-img{
  max-width: 467px;
  max-height: 350px;
  width: 100%;
  height: 100%;
}

.about_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper{
  margin-top: 30px;
}

@media screen and (min-width: 1000px) {
  .swiper{
    margin-top: 60px;
  }
}

.about_img02{
  display: block;
  max-width: 1200px;
  margin: 30px auto 0;
  object-fit: cover;
}



/* price *******************************************************************/



.price{
  background: repeating-linear-gradient(-45deg, #ffffff 0px, #ffffff 15px, #eaeaea1f 15px, #eaeaea1f 30px);
}

.price_wrapper{
  padding: 0 10px;
}

.price_ttl{
  padding-top: 30px;
}

.price_sub-ttl{
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -1.5px;
  color: var(--white);
  background: var(--green);
  padding: 10px 24px;
  text-align: center;
}

.price_copy_box{
  position: relative;
}

.price_top{
  width: 335px;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.price_copy_box_inner{
  background: var(--white);
  border: 1px solid var(--green);
  margin: 80px auto 0;
  max-width: 1100px;
}

.price_txt{
  font-size: 18px;
  margin-top: 57px;
  text-align: center;
}

.price_price{
  padding: 60px 0 0;
  font-size: 69px;
  font-weight: bold;
  text-align: center;
  color: var(--green);
  line-height: 1;
}

.u_price_size{
  font-size: 34px;
}

.price_copy{
  padding: 6px;
  line-height: 1.5;
  max-width: 750px;
  margin: 0 auto;
}

.price_img{
  height: auto;
  max-width: 530px;
  display: block;
  margin: 30px auto 0;
  padding: 0 20px;
}

@media screen and (min-width: 1000px) {
  .price_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1340px;
    margin: 0 auto;
  }
}

.price_inner{
  background: var(--white);
  margin-top: 50px;
  border: 1px solid rgb(112, 112, 112,0.36);
  padding-bottom: 30px;
  max-width: 730px;
  margin: 50px auto 0 ;
}

.price_works{
  margin-top: 32px;
}

.price_works_inner{
  line-height: 1;
  width: 180px;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .price_works_flex{
    display: flex;
    max-width: 500px;
    margin: 0 auto;
  }
}

.price_works_inner:first-child{
  margin-bottom: 16px;
}

.price_works_time{
	display: inline-block;
}

@media screen and (min-width: 1000px) {
  .price_works_time{
    font-size: 28px;
  }
}

.price_works_time_num{
  font-size: 39px;
  font-weight: bold;
  color: var(--orange);
  white-space: nowrap;
}

@media screen and (min-width: 1000px) {
  .price_works_time_num{
    font-size: 40px;
  }
}

.u_size{
  font-size: 16px;
  font-weight: normal;
}

th,td{
  border: 2px solid var(--white);
  width: 413px;
}

th,td:not(:first-child){
  max-width: 223px;
}

.price_table{
  padding: 0 10px;
  display: block;
  margin: 30px auto 0;
  max-width: 641px;
}

.price_th{
  font-size: 14px;
  padding: 12px 24px;
  background: rgb(123, 192, 77,0.42);
}

.price_td{
  font-size: 14px;
  padding: 12px 6px;
  background: rgb(123, 192, 77,0.16);
}

.price_td02{
  font-size: 20px;
  font-weight: bold;
  color: var(--orange);
  line-height: 0.8;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .price_td02{
    font-size: 30px;
  }
}

.price_td_size{
  font-size: 12px;
  font-weight: normal;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .price_td_size{
    font-size: 16px;
  }
}

.u_price{
  font-size: 8px;
  font-weight: normal;
  position: absolute;
  top: 0%;
  left: 0%;
}

.price_sub-copy{
  padding: 30px 0;
  text-align: center;
}



/* works *******************************************************************/



.works_img01{
  padding: 30px 40px ;
  max-width: 600px;
}

.works_img02{
  padding: 0 20px ;
  max-width: 600px;
}

.works_inner{
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .works_inner{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 1000px) {
  .br_none{
    display: none;
  }
}



/* flow *******************************************************************/



.flow{
  background-image: linear-gradient(#88888823 1px, transparent 0),
  linear-gradient(90deg, #88888823 1px, transparent 0);
  background-size: 40px 40px;
}

.flow_ttl{
  padding-top: 30px;
}

.flow_wrapper{
  padding: 0 20px;
  margin: 50px auto 20px;
  max-width: 1400px;
}

.flow_heading{
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  padding: 32px 0;
  margin-top: 60px;
}



/* company *******************************************************************/



.company_img_box{
  width: 100%;
  max-width: 1035px;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 50px;
}

.company_img{
  width: 30%;
  object-fit: contain;
}

@media screen and (min-width: 1000px) {
  .company_img{
    width: 200px;
    object-fit: contain;
  }
}



/* contact *******************************************************************/



.contact{
  margin-bottom: 100px;
}

.contact_ttl{
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: var(--green);
}

@media screen and (min-width: 1000px) {
  .contact_ttl{
    font-size: 48px;
  }
}

.contact_inner{
  padding: 50px 0;
  background-size: auto auto;
  background-color: rgba(239, 239, 239, 0.62);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 15px, rgba(255, 255, 255, 0.6) 15px, rgba(255, 255, 255, 0.6) 30px );
}

.contact_sub_ttl{
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .btn_wrapper{
    display: flex;
    margin: 40px auto 0;
    width: 800px;
  }
}

.contact_btn{
  display: block;
  width: 327px;
  margin: 0 auto;
}

.contact_btn:hover{
  opacity: 0.6;
}

.contact_btn_tel{
  display: block;
  margin-top: 57px;
  font-size: 27px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  background: var(--orange);
  position: relative;
  padding: 10px 0;
  padding-left: 30px;
  border-radius: 10px;
}

@media screen and (min-width: 1000px) {
  .contact_btn_tel{
    margin-top: 0;
  }
}

.contact_btn_tel::before{
  content: url(../img/contact_icon.png);
  display: inline-block;
  transform: scale(0.2);
  vertical-align: middle;
  position: absolute;
  left:  0px;
  top: -40px;
  z-index: 2;
}

.contact_btn_form{
  margin-top: 36px;
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  background: var(--green);
  position: relative;
  padding: 14px 0;
  padding-left: 30px;
  border-radius: 10px;
}

.contact_btn_form::before{
  content: url(../img/contact_icon02.png);
  display: inline-block;
  transform: scale(0.2);
  vertical-align: middle;
  position: absolute;
  left:  0px;
  top: -18px;
  z-index: 2;
}

@media screen and (min-width: 1000px) {
  .contact_btn_form{
    margin-top: 0;
  }
}

.contact_form{
  margin-top: 50px;
  padding: 0 20px;
}

.contact_form_list{
  max-width: 1200px;
  margin: 0 auto;
}

.contact_form_heading{
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}

@media screen and (min-width: 1000px) {
  .contact_form_item{
    margin: 0 auto;
    max-width: 730px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.contact_form_input{
  border: 1px solid #CDD6DD;
  width: 100%;
  height: 64px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1000px) {
  .contact_form_input{
    margin: 45px auto;
    width: 440px;
  }
}

select{
  border: 1px solid #CDD6DD;
  width: 100%;
  height: 64px;
  margin-bottom: 30px;
  background-image: linear-gradient(45deg, transparent 50%, rgba(191,191,191,0.9) 50%),  linear-gradient(135deg, rgba(191,191,191,0.9) 50%, transparent 50%);
  background-size: 10px 10px, 10px 10px;
  background-position: calc(100% - 30px) 50%, calc(100% - 20px) 50%;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1000px) {
  select{
    margin: 45px 0;
    width: 440px;
  }
}

.contact_form_textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #CDD6DD;
  border-radius: 4px;
  padding: 8px 16px;
  resize: none;
}

@media screen and (min-width: 1000px) {
  .contact_form_textarea{
    width: 440px;
    margin: 45px auto;
  }
}

.contact_policy{
  margin: 30px auto 0;
  max-width: 1200px;
}

.contact_policy_ttl{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (min-width: 1000px) {
  .contact_policy_ttl{
    text-align: center;
  }
}

.contact_form_policy-txt{
  width: 100%;
  border: 1px solid #000;
  height: 400px;
  overflow: scroll;
  padding: 25px;
  border: 1px solid rgb(112, 112, 112,0.36);
  line-height: 1.5;
}

.privacy-policy__item__title{
  font-weight: bold;
}

.privacy-policy__item__desc{
  margin-bottom: 25px;
}

.contact_form_checkbox{
  padding: 40px 0;
  margin: 0 auto;
  text-align: center;
}

input.wpcf7-submit {
  padding:0.8em ;
  margin:2em 0em ;
  background-color: var(--green) ;
  border-radius: 10px ;
  color: #fff ;
  font-size: 20px ;
  font-weight: bold ;
  width: 300px;
  transition:0.5s;
  box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.10);
}

input.wpcf7-submit:hover {
  opacity: 0.6;
}

.btn-submit {
  width: 100%;
  text-align: center;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: 40px;
}

span.wpcf7-list-item {
  position: relative;
  margin: 0 50px 0 0 ;
}

.wpcf7-list-item-label {
  color: var(--font);
  cursor: pointer;
  font-size: 16px;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.wpcf7-list-item-label:before {
  content: '';
  border: 1px solid var(--font);
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  top: -2px;
  left: 0;
  margin-right: 20px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}

input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid var(--font);
  border-right: 3px solid var(--font);
}
