html {
  margin-top: 0 !important;
  
}

body {
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", YuGothic, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  overflow-x: hidden;
}
body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

p,a,h1,h2,h3,h4,h5,h6,ul,li,ol {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

img {
  vertical-align: bottom;
}

.container {
  margin-top: 79px;
}

.sp {
  display: none;
}

*:focus {
  outline: none;
}

.color-permanent:link, .color-permanent:visited, .color-permanent:hover, .color-permanent:active {
  color: #333333;
}

@media screen and (max-width:769px) {
  .container {
    width: 100%;
    position: initial;
    margin-top: 52px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}



/* 検索フォーム */
.search-box {
  margin-left: auto;
}

.search-box input[type="text"] {
  box-sizing: border-box;
  background-color: #e6e6e6;
  width: 332.4px;
  height: 50.1px;
  padding: 0 25.5px;
  font-size: 16px;
  color: #333333;
  border: none;
  border-radius: 30px;
  vertical-align: top;
}

.search-box button {
  border: none;
  background: initial;
  width: 51px;
  height: 51px;
  padding: 0;
  margin-left: 12px;
  cursor: pointer;
}

.search-box button img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width:769px) {
  .search-box {
    margin: 0;
    padding: 5.44vw 0;
    background-color: #999999;
  }

  .search-box form {
    text-align: center;
  }

  .search-box input[type="text"] {
    width: 77.36vw;
    height: 11.92vw;
    padding: 0 6.72vw;
    border-radius: 8vw;
    line-height: 11.92vw;
  }

  .search-box button {
    width: 11.92vw;
    height: 11.92vw;
    margin-left: 2.8vw;
  }
}


/* ページネーション  */

.pnavi {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.pnavi span {
  box-sizing: border-box;
  width: 55px;
  height: 38px;
  font-size: 18px;
  line-height: 38px;
  border: 1px solid #333333;
  text-align: center;
  border-right: none;
  color: #333333;
}

.pnavi .current {
  background-color: #333333;
  color: #ffffff;
}

.pnavi a {
  box-sizing: border-box;
  width: 55px;
  height: 38px;
  font-size: 18px;
  line-height: 38px;
  border: 1px solid #333333;
  border-right: none;
  text-align: center;
  color: #333333;
}

.pnavi a:nth-last-child(1),.pnavi a:nth-child(1) {
  border: none;
  margin: 0 23px;
}

.pnavi a:nth-last-child(2) {
  border-right: 1px solid #333333;
}

@media screen and (max-width:769px)  {
  .pnavi {
    margin-top: 3.2vw;
  }

  .pnavi span {
    width: 10.2vw;
    height: 7.5vw;
    line-height: 7.5vw;
    font-size: 3.2vw;
  }

  .pnavi a {
    width: 10.2vw;
    height: 7.5vw;
    line-height: 7.5vw;
    font-size: 3.2vw;
  }

  .pnavi a:nth-last-child(1),.pnavi a:nth-child(1) {
    margin: 0 3.92vw;
  }
}



/* パンくずリスト */

#breadcrumb {
  width: 100%;
  margin: 0 auto;
  height: 24px;
  background-color:#f0adb5;
}

.breadcrumb-inner {
  width: 1100px;
  margin: 0 auto;
}

.breadcrumb-inner ul {
  list-style: none;
  display:flex;
}

.breadcrumb-inner ul li {
  padding: 0 30px;
}

.breadcrumb-inner ul li:nth-child(1) {
  padding: 0 30px 0 0;
}

.breadcrumb-inner ul li:nth-last-child(1) {
  background-color: #ED7483;
  position: relative;
}

.breadcrumb-inner ul li:nth-last-child(1)::before {
   content: '';
   border-left: 10px solid #f0adb5;
   border-top: 12px solid transparent;
   border-bottom: 12px solid transparent;
   position: absolute;
   top: 0;
   left: 0;
}

.breadcrumb-inner ul li:nth-last-child(1)::after {
   content: '';
   border-left: 10px solid #ED7483;
   border-top: 12px solid transparent;
   border-bottom: 12px solid transparent;
   position: absolute;
   top: 0;
   right: -10px;
}

.breadcrumb-inner ul li span {
  font-size: 13px;
  line-height: 24px;
  color: #ffffff;
  display: block;
}

@media screen and (max-width:769px) {
  #breadcrumb {
    height: 5.6vw;
  }

  .breadcrumb-inner {
    padding: 0 4vw;
  }

  .breadcrumb-inner ul  {
    overflow-x: auto;
    white-space: nowrap;
  }

  .breadcrumb-inner ul li {
    padding: 0 4vw;
    line-height: 5.6vw;
  }

  .breadcrumb-inner ul li:nth-child(1) {
    padding: 0 4vw 0 0;
  }

  .breadcrumb-inner ul li:nth-last-child(1)::before {
    content: '';
    border-left: 2vw solid #f0adb5;
    border-top: 2.8vw solid transparent;
    border-bottom: 2.8vw solid transparent;
    position: absolute;
    top: 0;
    left: 0;
 }
 
 .breadcrumb-inner ul li:nth-last-child(1)::after {
    content: '';
    border-left: 2vw solid #ED7483;
    border-top: 2.8vw solid transparent;
    border-bottom: 2.8vw solid transparent;
    position: absolute;
    top: 0;
    right: -2vw;
 }

 .breadcrumb-inner ul li span {
   font-size: 2.93333vw;
   line-height: 5.6vw;
 }
}

/* ここから追加していく */
html{
  background-color: #F7F7F7;
  font-family:  "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",sans-serif;

}
body {
  background-color: #F7F7F7;
  font-family:  "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",sans-serif;
font-style: normal;

}

h1 {
  font-size: 60px;
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic"  ;

}

h2 {
  font-size: 55px;
  letter-spacing: 0.1em;
  color:#FFE200;
  font-family: forma-djr-text,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  
}


h3 {
  font-size: 18px;
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic";
  font-weight: bold;
  
}


h4 {
  color: #30AD07;
  font-size: 50px;
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic";
 

}

h5 {
  font-size: 25px;
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic";
 
}


p {
  font-size: 18px;
  line-height: 31px;
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic"  ;
}


a {
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic";
}


.gorenraku {
  font-size: 16px;
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic";
}



.karikarikari {
  display: flex;
}






.btn-twitter {
  font-size: 16px;
  align-items: center;
  color: #1F1F1F;
  border: 2px solid #FFA800;
  width: 280px;
  height: auto;
  border-radius: 6em;
  padding: 0px 46px 0px 51px;
  margin: 0 auto;
line-height: normal;
font-weight: bold;
line-height: 80px;
display: flex;
justify-content: space-between;
}

.btn-twitter:hover{
 
    background-color: #FFA800;
    color: #FFFFFF;
  
}

.twitter_twitter {
  position: relative;
}



/* 

.twitter_twitter::before {
  content: url(/wp-content/themes/afuee/assets/img/common/twitter.png);
  position: absolute;
  top: -17px;
  left: -46px;
  width: 39px;
  height: 39px;
}

 */

 .kari {
   width: 39px;
   height: 39px;
 }




span {
  padding-left: 0px;
}


/* トップページ画像サイズ */
.lemontoha {
  width: 350px;
  height: auto;
  padding-top: 100px;
}

.area_third_view_01_img {
  width: 290px;
  height: auto;
}


.area_fourth_view_01_img {
  width: 290px;
  height: auto;
}

.twitter {
  width: 39px;
  height: auto;
}
/* トップページ画像サイズ */

.area_top_view {
  width: 1080px;
  
  margin: -45px auto 0 ;
}




.hitori {
  /* color: #FFE200; */
  padding: 0 3px;
}


.area_top_view_main h1 {
  margin: 0 0 35px 0;
}

.area_top_view_main p {
  font-size: 20px;
  font-weight: 600;
line-height: 35px;

}





.area_top_view_main {
  padding: 240px 0 260px;
  margin-top: 69px;
}

/* 
.area_top_view_main2 h1 {
  margin-bottom: 35px;
  margin-top: 90px;
}

.area_top_view_main2 p {
  font-size: 18px;
  font-weight: normal;
line-height: 40px;
} */




/* 
.area_top_view_main2 {
  padding: 200px 0 300px;
} */


/* 背景画像 fv*/
.container-1 {
  background-repeat: no-repeat;
  background-image: url(/wp-content/themes/afuee/assets/img/common/fv1.png);
  background-image: image-set(url(/wp-content/themes/afuee/assets/img/common/fv1.png) 1x, url(/wp-content/themes/afuee/assets/img/common/fv1@2x.png) 2x);
  background-image: -webkit-image-set(url(/wp-content/themes/afuee/assets/img/common/fv1.png) 1x, url(/wp-content/themes/afuee/assets/img/common/fv1@2x.png) 2x);
  background-position: center;
  background-size: cover;
  
}






.backnew {
  width: 100%;
}





/* 
.container-skill {
  background-repeat: no-repeat;
  background-image: url(/wp-content/themes/afuee/assets/img/common/fv222.png);
  background-position: center;
  background-size: cover;
} */

/* .container_first {
  background-repeat: no-repeat;
  background-image: url(/wp-content/themes/afuee/assets/img/common/fv3.png);
  background-position: 50% 50%;
} */
/* 
.container_top {
  background-repeat: no-repeat;
  background-image: url(/wp-content/themes/afuee/assets/img/common/fv3.png);
  background-position: 50% 50%;
} */
/* 背景画像fv */

.attou-img {
  width: 608.99px;
  height: 584.37px;
}

.area_second_view {
  
  width: 1080px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 107px;
}

.text-1 {
  margin-top: 50px;

font-weight: 500;
font-size: 18px;
line-height: 40px;
text-align: left;
color: #1f1f1f;
}


.text-2 {
  margin-top: 50px;
  margin-top: 50px;
 
/* height: 306px; */

font-weight: 500;
font-size: 18px;
line-height: 35px;
text-align: left;
color: #1f1f1f;

}

.text-3 {
  margin-top: 50px;

/* height: 306px; */
font-weight: 500;
font-size: 18px;
line-height: 35px;
text-align: left;
color: #1f1f1f;

}

.area_second_view_left h3 {
  margin-top: 16px;
}

.area_third_view_title {

  width: 1080px;
  height: 100%;
  margin: 0 auto;
  
}





.area_third_view {
  width: 920px;
  height: 100%;
  
  margin: 0 auto;
  display: flex;
  align-items: center;
  
    background: #fff;
    padding: 32px 80px;
    justify-content: space-between;
    position: relative;
    z-index: 0;
    border: 1px
 solid #cecfd1;
 margin-bottom: 40px;
 box-shadow: 0 4px 3px 0 rgb(0 0 0 / 15%);
 border-radius: 0.5em;
}

.area_third2_view {
  width: 920px;
  height: 100%;
  
  margin: 0 auto;
  display: flex;
  align-items: center;
  
    background: #F7F7F7;
    padding: 32px 80px;
    justify-content: space-between;
    position: relative;
    z-index: 0;
 margin-bottom: 40px;
}



.mini_title {
  display: flex;
  align-items: end;
}

.mini_title h4 {
  padding-right: 20px;
}

.mini_title h5 {
  padding-bottom: 7px
  ;
}







.area_third_view_title h3 {
  margin: 16px 0 52px 0;
}


.container-3 {
  margin: 180px 0;

}

/* ここからcontact */
.contact {
  background-image: url(/wp-content/themes/afuee/assets/img/common/contact-back.png);
  margin: 0 auto;
  background-size: cover;
  padding: 50px 0 ;

  
 
 
}

.contact_content {
  
  height: 100%;
  width: 1080px;
  margin: 0 auto;

  align-items: center;
  
    background: #fff;
    padding: 32px 2px 45px 2px;
    justify-content: space-between;
    position: relative;
    z-index: 0;
    border: 1px
 solid #cecfd1;
}

.contact_content {
  text-align: center;
}

.contact_content h2 {
  
  font-weight: bold;
letter-spacing: 0.2em;
line-height: 80px;
}

.contact_content h3 {
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic";
  font-weight: bold;
/* line-height: 80px; */



}

.gorenraku {
  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic";
  font-weight: 500;
line-height: 80px;

}
/* ここまでcontact */

.text-0 {
  margin-top: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    text-align: left;
    color: #1f1f1f;
}






.area_fourth_view_title {
  
    width: 1080px;
    height: 100%;
    margin: 0 auto;
    
  }
  
  .area_fourth_view {

    height: 100%;
    width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    
      background: #fff;
      padding: 32px 80px;
      justify-content: space-between;
      position: relative;
      z-index: 0;
      border: 1px
   solid #cecfd1;
   margin-bottom: 40px;
 box-shadow: 0 4px 3px 0 rgb(0 0 0 / 15%);
 border-radius: 0.5em;
  }

  .area_fourth_view_title h3 {
    margin: 16px 0 52px 0;
  }
  
  .container-4 {
    margin: 125px 0 167px 0 ;
  }

  /* ここからskillページ */
  /* .container_engineer_all {
    margin-bottom: 180px;
  }
 */




/* 
  .engineer {
    max-width: 1080px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    margin-top: 180px;
  }

  /* .engineer_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 15px;
  } */

  /* .engineer_title  h3{
    margin-top: 16px;
  }










  .skill_img {
    width: 190px;
    height: auto;
  } */ */

  /* 点３つとやじるしセット */
  /* .ten_ten {
    text-align: center;
  }

  .tenset {
    display: flex;
    justify-content: center;
  }

.ten {
  width: 6px;
  height: auto;
  padding: 6px;
  
}
 

.yajirusiset {
  max-width: 174px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  }



.yajirusi_yajirusi {
  text-align: center;
}


.yajirusi {
width: 37px;
height: auto;
margin-top: 25px;

}

.syousai_syousai {
  text-align: end;
  margin-top: 21px;
}


.btn_syousai {
  background-color: #FFA800;
  align-items: center;
  color: #FFFFFF;
  /* border: 2px solid #FFA800; */
  width: 125px;
  height: auto;
  border-radius: 6em;
  padding: 24px 46px 24px 51px;
  margin: 0 auto;


}

.btn_syousai:hover {
  background-color: #FFE200;
} */



/* 点３つとやじるしとスキル詳細へセット */








.container_skillset {
  
  width: 1080px;
  height: 100%;
  margin: 0 auto;
  
  align-items: center;
  margin-top: 53px;
 
  
}


/* 
.container_skillset h1 {
  font-size: 50px;
  text-align: center;
  /* margin-bottom: 20px; */
 

/* 
.container_skillset p {
  font-size: 20px;
  text-align: center;
  /* margin-bottom: 55px; */


/* .container_skillset2 {
  margin: 200px 0 300px;
}
 */




/* .skill_img {
  width: 190px;
  height: auto;
}

.contaner_second {
  max-width: 1080px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 180px;
}



.muiteru_img {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nahito_img {
  width: 210px;
  height: auto;
}

.lock_lock {
  text-align: center;
  margin-bottom: 20px;
}


.lock_img {
  width: 110.65px;
  height: auto;
  padding-top: 55px;
  
}


.koukai {
  text-align: center;
  margin-bottom: 10px;
}

.kibou {
  text-align: center;
} */

/* ここから問い合わせページ */

/* .container_top {
  /* margin-top: 180px; */
} */


/* 
.container_top_mini2 {
  text-align: center;
  padding: 200px  0 300px;
}

.container_top_mini2 h1{
 font-size: 50px;
 font-family: forma-djr-text, sans-serif;;
 font-weight: bold;
letter-spacing: 0.2em;
line-height: 80px;

}

.container_top_mini2 p{
  font-size: 20px;
  font-weight: 500;
line-height: 80px;

 }
 
 */

 


/* 
.container_second_mini {
  max-width: 1080px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 180px;
}

.contaner_second_mini p {
  font-weight: 500;
line-height: 30px;
}




.container_second_mini h2 {
  color: #383838;
  font-size: 30px;
  font-family: source-han-sans-japanese  ;
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
}

.container_second_mini h2:before {
  content: '';
  position: absolute;
  left: 12%;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 116px;/*線の長さ*/
  height: 3px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color:#FFEE27;/*線の色*/
  border-radius: 2px;/*線の丸み*/
/* } */ */
/* 
.container_roadmap {
max-width: 1080px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 180px;
  margin-bottom: 200px;
  position: relative;
}


.container_roadmap h2 {
  color: #383838;
  font-size: 30px;

  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  font-weight: bold;
line-height: 80px;




}

.container_roadmap h2:before {
  content: '';
  position: absolute;
  left: 14%;
  bottom: 9px;/*線の上下位置*/
  display: inline-block;
  width: 116px;/*線の長さ*/
  height: 3px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color:#FFEE27;/*線の色*/
  border-radius: 2px;/*線の丸み*/


}
 */














/* 
.skill_roadmap_back {
  max-width: 1080px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 40px 0;
  
}



.skill_roadmap {
  max-width: 838px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  
    
}

.skill_roadmap p {
  -ms-filter: blur(6px);
  filter: blur(4px);
}

.roadmap {
 position: absolute;
 left: 0px;
 top: 21%;
 background-image: url(/wp-content/themes/afuee/assets/img/common/bokashi.png);
 width: 1080px;
 height: 400px;
}












.yama {
  width: 277px;
  height: auto;
}

.schedule {
  width: 459px;
  height: auto;
}
 */



/* .container_second_mini p .btn-twitter{
  text-align: center;
} */
/* 
.container_second_2{
  max-width: 880px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 400px;

}

.contact_twitter {
  text-align: center;
  padding-top: 120px;
}







.dm {
  margin-bottom: 50px;

} */



/* ここからレスポンシブ */

@media screen and (max-width:769px) {
  
  .area_second_view {
    width: 95%;
    margin: 0 auto;
  }
}

@media screen and (max-width:769px) {
  body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  
  
  .area_top_view {
    width: 90%;
  }




  .area_top_view_main  {
    padding: 252px 0px 145px;
  }




  .area_top_view_main h1 {
    font-size: 40px;
  }
  
  .area_top_view_main p {
    font-size: 20px;
  }
  
  .lemontoha {
    width: 222px;
    height: auto;
    padding-top: 42px;
  }
  
  .spyou {
    text-align: center;
    
  }
  
  .pcyou {
    display: none;
  }
  
  .area_second_view {
    display: block;
    width: 95%;
    margin: 0 auto; 
  }
  
  
  
  .area_second_view_left h2 {
    font-size: 40px;
  }

  .area_second_view_left h3 {
    font-size: 18px;
  }

  .area_second_view_left p {
    font-size: 16px;
    padding: 0;
    line-height: 30px;
    margin-top: 30px;
  }


  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 18px;
    
  }

  .area_third_view_title h3 {
    margin: 7px 0 27px 0;
  }


  .area_fourth_view_title h3 {
    margin: 7px 0 27px 0;
  }

  br {
    display:none;
  }


.mini_title h4 {
  padding: 0 8px;
  font-size: 37px;
  line-height: 37px;
  height: 37px;
}

.mini_title {
  padding-top: 10px;
  vertical-align: bottom;
  height: 37px;
  display: table;
  -webkit-appearance: none;
}
.tb {
  display: table-cell;
}


.mini_title h5 {
  padding-bottom: 7px
  ;
}
  h5 {
    font-size: 15px;
    
    line-height: 15px;
    vertical-align: bottom;

  }

  .area_third_view {
    display: block;
    width: 90%;
    margin: 0 auto; 
    margin-bottom: 42px;
    padding: 10px 4px;
  }

  .area_third_view_title {
    width: 90%;
    margin: 0 auto; 

  }

  .area_third_view_01_img{
    text-align: center;
    padding: 10px;
    width: 200px;
  }



  .text-1 {
    font-size: 13px;
    padding-left: 13px;
    line-height: 30px;
    margin-top: 30px;
  }







  .text-2 {
    font-size: 16px;
  }

.text-2 {
  margin-top: 50px;
  margin-top: 50px;
  
/* height: 306px; */

font-weight: 500;
font-size: 18px;
line-height: 35px;
text-align: left;
color: #1f1f1f;

}

.text-3 {
  margin-top: 50px;
  


/* height: 306px; */
font-weight: 500;
font-size: 18px;
line-height: 35px;
text-align: left;
color: #1f1f1f;

}








  .area_fourth_view_title {
    width: 90%;
    margin: 0 auto; 

  }

  .area_fourth_view {
    display: block;
    width: 90%;
    margin: 0 auto; 
    padding: 10px 4px;
    margin-bottom: 42px;
  }


  .area_fourth_view_01_img{
    text-align: center;
    padding: 10px;
    width: 200px;
  }


















  .contact {
    width: 100%;
    margin: 0 auto;
  }

  .contact_content {
    width: 90%;
    margin: 0 auto;
  }

  .contact_content h2 {
    line-height: 45px;
    font-size: 40px;
  }


  .contact_content h3 {
    line-height: 26px;
    font-size: 16px;
  }



  .btn-twitter {
    font-size: 10px;
    justify-content: space-between;
    border: 1px solid #ffa800;
    width: 168px;
    height: 50px;
    padding: 0 30px;
  }

  .twitter_twitter {
    height: 50px;
    line-height: 50px;
  }







  .kari {
    width: 20px;
    height: 20px;
  }

  .gorenraku {
    font-size: 13px;
    line-height: 30px;
    padding: 10px 0 ;
  }

  .container-1 {
    background-repeat: no-repeat;
    background-image: url(/wp-content/themes/afuee/assets/img/common/spfv21111.png);
    background-image: image-set(url(/wp-content/themes/afuee/assets/img/common/spfv21111.png) 1x, url(/wp-content/themes/afuee/assets/img/common/spfv21111@2x.png) 2x);
  	background-image: -webkit-image-set(url(/wp-content/themes/afuee/assets/img/common/spfv21111.png) 1x, url(/wp-content/themes/afuee/assets/img/common/spfv21111@2x.png) 2x);
    background-position: center;
    background-size: cover;
    
  }



  .container-3 {
    margin: 100px 0;
  }


  .container-4 {
    margin: 66px 0;
  }

  

.pc1 {
  display: none;
}



.text-1-sp {

  font-size: 13px;
  padding-left: 13px;
  line-height: 30px;
  margin-top: 30px;
}

.text-1 {
  display: none;
}

.text-0 {
  font-size: 16px;
    padding: 0;
    line-height: 30px;
    margin-top: 30px;
    font-weight: 500;
    color: #1F1F1F;
}

.area_top_view_main {
  margin-top: 36px;
  margin-bottom: 75px;
}

}




@media screen and (min-width:769px) {

.spyou {
  display: none;
  
}

.text-1-sp {
  display: none;
}


}
