body{
  background-color: #F0EFDE;
}
.sp{
  display: none;
}
/*　　　　　　　　　サイド　アイコン　　　　　　　　*/

.staff {
  z-index: 10;
  position:fixed;
  top:90px;
  right: -15px;
  background-color: #8FAF99;
  display:inline-block;
  width: 60px;
  height: 150px;
  border-radius: 10px 0 0 10px;
}
.staff:hover {
  right: 0px;
  cursor:pointer;
}

.staff p {
  writing-mode: vertical-rl;
  margin: 19px 7px;
  font-size: 16px;
  color: #fff;
}
.contact {
  z-index: 10;
  position:fixed;
  top:250px;
  right: -15px;
  background-color: #8FAF99;
  display:inline-block;
  width: 60px;
  height: 150px;
  border-radius: 10px 0 0 10px;
}
.contact:hover {
  right: 0px;
  cursor:pointer;
}

.contact p {
  writing-mode: vertical-rl;
  margin: 27px 7px;
  font-size: 16px;
  color: #fff;
}


/*  　　　　    ラッパー   　　　　　　     */

.rap{
  max-width: 1000px;
  margin: auto;
}
/*  　　　　    ヘッダー   　　　　　　     */
.tel{
  width: 400px;
  margin: 50px 0 10px auto;
}

.nav_box {
  display:block;
  position: relative;
}

.nav_in_box {
  box-shadow: 2px 2px 4px #BEAC83;
  display: flex;
  width:1000px;
  height: 400px;
}
.nav_back {
  height: 400px;
  width: 300px;
  padding: 0 35px;
  background-color: #fff;

}
.nav_logo{
  margin: 30px 0 10px;
}
@keyframes animation_logo{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.6;
    }
    100%{
        opacity: 1;
    }
}
.nav_logo:hover{
    animation-name: animation_logo;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    cursor:pointer;
}



.menu{
  color: #8FAF99;
  font-size: 16px;
  line-height: 2.2em;
}

.menu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.menu a:hover{
  color: #BEAC83;
  cursor:pointer;
}
.menu a::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #BEAC83;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.menu a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}




.nav_re{
  position: absolute;
  top:270px;
  width: 300px;
  left: -20px;
}
/*.nav_re:hover{
width: 310px;
transform:rotate(-5deg);
}*/


@keyframes animation_re{
    0%{
        transform:rotate(0deg)
    }
    50%{
        transform:rotate(-1deg);
        filter: drop-shadow(5px 5px 5px #8FAF99);
    }
    100%{
        transform:rotate(0deg);
    }
}
.nav_re:hover{
    animation-name: animation_re;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    cursor:pointer;
}



/*  　　　　    main  　　　　　　     */

.free_a {
  color: #C67960;
  font-weight: 100;
  font-size: 30px;
  letter-spacing: 0.5rem;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
  padding-bottom: 5px;
  text-align: center;
  border-bottom: dotted 3px #C67960;
}
/*  　　　　    main  お悩み　　　　　　     */
.trouble{
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  width: 100%;
  height: 280px;
  background-color: #fff;
  box-shadow: 2px 2px 4px #BEAC83;
  position: relative;
  transform:rotate(0deg);
}
.trouble:after{
  position: absolute;
  color: #8FAF99;
  font-size: 30px;
  top:10px;
  left: 20px;
  content: "●";
}
.trouble:before{
  position: absolute;
  color: #8FAF99;
  top:10px;
  right: 20px;
  font-size: 30px;
  content: "●";
}
.tr_title{
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}
.trouble h3{
  text-align: center;
  font-size:26px;
  color: #8FAF99;
  letter-spacing: 0.1em;
}

.tr_table{
  margin: 10px 30px 0 30px;
  font-size: 21px;
  color: #8FAF99;
  letter-spacing: 0.1em;
}
.tr_table td{
  padding: 18px 100px 2px 0;
}
.tr_table, td, tr {
    border-bottom: 2px dotted #8FAF99;
    border-top: 2px dotted #8FAF99;
}

/*  　　　　    main  フリー紹介　　　　　　     */

.free_pl{
  position: relative;
}
.free_pl img{
  position: absolute;
  top:120px;
  left:-500px;
  width: 1000px;
}

.free_pl_over{
  margin: 120px 0 0 auto;
}

.free_pl_t{
  display: flex;
  flex-direction: column;
}
.free_pl_t_a{
  transform:rotate(0deg);
  width: 450px;
  height:270px;
  background-color: #fff;
  box-shadow: 2px 2px 4px #BEAC83;
  position: relative;
  margin-bottom: 50px;
}
.free_pl_t_a:before{
  border-top: 25px solid #8FAF99;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  content: "";
  position: absolute;
  bottom: -28px; /* 三角形の高さ＋ボックスのボーダーをマイナスに */
  left: 50%;/* 中央寄せに使用 */
  margin-left: -30px; /* 中央寄せに使用 */
  bottom:-40px;
}
.free_pl_t_b{
  transform:rotate(0deg);
  width: 450px;
  height:270px;
  background-color: #fff;
  box-shadow: 2px 2px 4px #BEAC83;
}
.free_pl_title{
  margin: 30px 30px;
  height: 50px;
  padding: 13px 0 0 0;
  background-color: #8FAF99;
}
.free_pl_title h4{
  text-align: center;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.1em;
}
.free_pl_title p{
  line-height: 32px;
  margin-top: 30px;
  color: #8FAF99;
  font-size: 18px;
  letter-spacing: 0.1em;
}
/*  　　　　    main  手続きの流れ　　　　　　     */
.process{
  margin-top: 770px;
}
.process_title{
  background-color: #8FAF99;
  height: 40px;
  padding-top: 11px;
  box-shadow: 2px 2px 4px #BEAC83;
}

.process_title p{
  margin: 30px 0;
  font-size: 24px;
  text-align: center;
  padding:10px 0 5px;
  color: #8FAF99;
  font-weight: bold;
  border-bottom: 2px double #8FAF99;
  border-top: 2px double #8FAF99;
}

.process h2{
  text-align: center;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.2em;
}
.process_box{
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.process_box_in{
  box-shadow: 2px 2px 4px #BEAC83;
  height: 480px;
  width: 320px;
  background-color: #fff;
}
.process_box_in_1{
  margin-top: 20px;
  display: flex;
  justify-content:center;

}
.process_box_in_1 img{
  width: 55px;
  height: 55px;
}
.process_box_in_1 h3{
  color: #8FAF99;
  font-size: 24px;
  margin-left: 10px;
  align-self:center;
  letter-spacing: 0.1em;
}
.process_box_img{
  margin: 0 50px;
}

.process_box_img2{
  margin: 20px 10px 10px;

}

.process_box_img3{
  margin: 18px 32px 2px;
}
.process_box_in p{
  margin: 20px 40px;
  font-size: 17px;
  color: #8FAF99;
  letter-spacing: 0.2em;
  line-height: 20px;
}
.process_info{
  margin: 50px 0;
}
.process_info1{
  margin: 20px 0;
  font-size: 20px;
  color: #8FAF99;
  letter-spacing: 0.2em;
  line-height: 20px;
  text-align: center;
}
.process_info2{
  margin: 20px 0;
  font-size: 35px;
  font-weight: bold;
  color: #8FAF99;
  line-height: 20px;
  text-align: center;
}
.process_info_but{
  margin: 10px auto 0;
  border: 1px solid #fff;
  width: 320px;
  height: 45px;
  background-color: #8FAF99;
  box-shadow: 2px 2px 4px #BEAC83;
}
.process_info_but p{
  text-align: center;
  margin: 12px 15px 0 0;
  font-size: 23px;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 20px;
}

.process_info_but:hover{
  filter: drop-shadow(5px 5px 5px #8FAF99);
  background-color: #BEAC83;
  cursor:pointer;
}


/*  　　　　    main  会社概要　　　　　     */
.corp_back{
  margin-top:150px;
  width: 100%;
  height: 450px;
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  box-shadow: 2px 2px 4px #BEAC83;
  display: flex;
  justify-content:space-around;
  align-self: center;
  padding: 50px 40px;
}
.corp_txt h3{
  margin: 0 0 10px;
  color: #8FAF99;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}
.corp_txt h4{
  color: #8FAF99;
  font-weight:bold;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  margin: 10px 0;
}
.corp_txt p{
  color: #8FAF99;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}
.corp_back2{
  width: 100%;
  height: 150px;
  background-color: #8FAF99;
  border-radius:0 0 15px 15px;
  box-shadow: 2px 2px 4px #BEAC83;
  color: #8FAF99;
  padding: 30px 10px;
  margin-bottom: 150px;
}
.corp_back2 p{
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  text-align: center;
}
.score{
  border: 1px solid #8FAF99;

}
.score h2{
  font-size: 15px;
  color: #fff;

  padding: 3px;
  text-align: center;
  background-color: #8FAF99;
}
.score ul{

  font-size: 15px;
  color: #8FAF99;
  padding: 3px;
}
/*  　　　　    footer　　　　　     */
.footer_back{
  background-color: #8FAF99;
  height: 260px;
}
.footer_back h2{
  padding-top: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}
.footer_back p{
  font-size: 15px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}
.footer_back h4{
  font-size: 22px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  margin: 0 0 20px;
}
.footer_back h6{
  font-size: 14px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}
/*  　　　　    メディアクエリ　　　　　     */
@media screen and (min-width:769px) and ( max-width:1100px) {
body{
 zoom: 70%;
}
}
@media screen and (min-width:600px) and ( max-width:768px) {
body{
 zoom: 55%;
}
}
/*  　　　　   スマホサイズ　　　　　     */
@media screen and ( max-width:599px) {

.pc{
  display: none;
}
.rap {
  margin: 0;
}
/*  　　　　   スマホサイズ　main nav　　　　     */
.sp{
  display:block;
}
.sp_top{
  display: flex;
  justify-content:space-around;
  align-self: center;
}


.sp_logo{
  width: 21vw;
  margin:10px 0 1px;
}
.tel{
  width: 50vw;
  margin:20px 0 10px;
}
/*  　　　　   スマホサイズ　main 下部nav　　　　     */
.sp_nav{
  position: fixed;
  z-index:5;
  bottom:0px;
  display: flex;
}
.sp_nav div{
  height: 50px;
  background-color: #4FA366;
  width: 50vw;
  text-align: center;
  border-top : 1px solid #fff;
  color: #fff;
  display: table;
}
.sp_nav div:first-child{
  border-right: 0.5px solid #fff;
}
.sp_nav a{
  display: table-cell;
  vertical-align: middle;
}


/*  　　　　   main お悩み　　　　　     */
.free_a {
  color: #C67960;
  font-weight: 100;
  font-size: 5.5vw;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
  padding-bottom: 5px;
  text-align: center;
  border-bottom: solid 2px #C67960;
}

.trouble{
  display: block;
  flex-direction: column;
  margin-top: 10px;
  width: 95%;
  height: 350px;
  background-color: #fff;
  box-shadow: 2px 2px 4px #BEAC83;
  position:static;
  transform:rotate(0deg);
  margin-left: auto;
  margin-right: auto;
}
@media screen and ( max-width:470px) {
  .trouble{
    height: 300px;
  }
}
.trouble:after{
  position:static;
  color: #8FAF99;
  font-size: 0;
  top:10px;
  left: 20px;
  content: "";
}
.trouble:before{
  position:static;
  color: #8FAF99;
  top:10px;
  right: 20px;
  font-size: 0;
  content: "";
}
.tr_title{
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}
.trouble h3{
  text-align: left;
  font-weight: bold;
  font-size:4vw;
  color: #8FAF99;
  letter-spacing: 0em;
  margin-top: 0px;
  padding-top: 20px;
}

.tr_table{
  margin: 10px 10px 0 10px;
  font-size: 3.5vw;
  color: #8FAF99;
  letter-spacing: 0
}
.tr_table td{
  padding: 18px 0 2px 0;
}
.tr_table, td, tr {
    border-bottom: 1px dotted #8FAF99;
    border-top: 1px dotted #8FAF99;
}

/*  　　　　    main  フリー紹介　sp　　　　　     */

.free_pl_over{
  margin: 120px 0 0 auto;
}

.free_pl_t{
  display: flex;
  flex-direction: column;
}
.free_pl_t_a{
  transform:rotate(0deg);
  width: 95vw;
  height:220px;
  background-color: #fff;
  box-shadow: 2px 2px 4px #BEAC83;
  position:static;
  margin-bottom: 50px;
}
.free_pl_t_a:before{
  border-top: 25px solid #8FAF99;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  content: "";
  position: absolute;
  bottom: -28px; /* 三角形の高さ＋ボックスのボーダーをマイナスに */
  left: 50%;/* 中央寄せに使用 */
  margin-left: -30px; /* 中央寄せに使用 */
  bottom:-40px;
}
.free_pl_t_b{
  transform:rotate(0deg);
  width: 95vw;
  height:220px;
  background-color: #fff;
  box-shadow: 2px 2px 4px #BEAC83;
}
.free_pl_title{
  margin: 20px 20px;
  height: 40px;
  padding: 5px 0 0 0;
  background-color: #8FAF99;
}
@media screen and ( max-width:470px) {
  .free_pl_title{
    height: 30px;
  }
}
.free_pl_title h4{
  text-align: center;
  color: #fff;
  font-size: 4.8vw;
  letter-spacing: 0.1em;
}
.free_pl_title p{
  line-height: 32px;
  margin-top: 30px;
  color: #8FAF99;
  font-size: 3.5vw;
  letter-spacing: 0;
}
/*  　　　　    main  手続きの流れ　　sp　　　　     */
.process{
  margin-top: 650px;
}
.process_title{
  background-color: #8FAF99;
  height: 80px;
  padding-top: 30px;
  box-shadow: none;
}

.process_title p{
  margin: 30px 5px;
  font-size: 20px;
  text-align: center;
  padding:10px 0 5px;
  color: #8FAF99;
  font-weight: bold;
  border: none;
}

.process h2{
  text-align: center;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.2em;
}
.process_box{
  display: block;
  justify-content: space-between;
  margin: 120px auto;
}
.process_box_in{
  margin: auto;
  box-shadow: none;
  height: 250px;
  width: 95vw;
  background-color: inherit;
}
.process_box_in_1{
  margin-top: 20px;
  display: flex;
  justify-content:center;

}
.process_box_in_1 img{
  width: 40px;
  height: 40px;
}
.process_box_in_1 h3{
  color: #8FAF99;
  font-size: 24px;
  margin-left: 10px;
  letter-spacing: 0.1em;
}
.process_ps{
  display: flex;
}

.process_box_img{
  margin: 0;
  padding: 15px;
  width: 180px;
}

.process_box_img2{
  margin: 0;
  width: 180px;
}

.process_box_img3{
  width: 180px;
  padding: 5px;
  margin: 0;
}
.process_box_in p{
  margin: 20px 20px;
  font-size: 13px;
  color: #8FAF99;
  letter-spacing: 0.2em;
  line-height: 20px;
}
@media screen and ( max-width:470px) {
  .process_box_in p{
    margin: 20px 10px;
    font-size: 13px;
    color: #8FAF99;
    letter-spacing: 0.1em;
    line-height: 20px;
  }
}


.process_info{
  margin: 50px 0;
}
.process_info1{
  margin: 20px 0;
  font-size: 13px;
  color: #8FAF99;
  letter-spacing: 0;
  line-height: 20px;
  text-align: center;
}
.process_info2{
  margin: 20px 0;
  font-size: 30px;
  font-weight: bold;
  color: #8FAF99;
  line-height: 20px;
  text-align: center;
}
.process_info_but{
  margin: 10px auto 0;
  border: 1px solid #fff;
  width: 60vw;
  height: 45px;
  background-color: #8FAF99;
  box-shadow: 2px 2px 4px #BEAC83;
}
.process_info_but p{
  text-align: center;
  margin: 12px 15px 0 0;
  font-size: 23px;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 20px;
}

.process_info_but:hover{
  filter: drop-shadow(5px 5px 5px #8FAF99);
  background-color: #BEAC83;
  cursor:pointer;
}


/*  　　　　    main  会社概要　　　　　     */
.corp_back{
  margin:100px auto 0;
  width: 95%;
  height: 620px;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 2px 2px 4px #BEAC83;
  display: block;
  justify-content:space-around;
  align-self: center;
  padding: 50px 10px;
}

.score{
  margin: 0 20px;
}

.corp_map{
  margin: auto;
  text-align: center;
}
.corp_txt h3{
  margin: 10px 0 15px;
    text-align: center;
  color: #8FAF99;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}
.corp_txt h4{
  color: #8FAF99;
    text-align: center;
  font-weight:bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  margin: 15px 0;
}
.corp_txt p{
  color: #8FAF99;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.2em;
}
.corp_back2{
  margin-left: auto;
  margin-right:auto;
  width: 95%;
  height: 90px;
  background-color: #8FAF99;
  border-radius:0 0 5px 5px;
  box-shadow: 2px 2px 4px #BEAC83;
  color: #8FAF99;
  padding: 20px 10px;
  margin-bottom: 100px;
}
.corp_back2 p{
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.2em;
  text-align: center;
}
iframe{
  height: 250px;
  width: 80vw;
  margin: auto;
}
  /*  　　　　    footer　　sp　　　     */

.footer_back{
    background-color: #8FAF99;
    height: 260px;
  }
  .footer_back h2{
    padding-top: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.4em;
  }
  .footer_back p{
    font-size: 12px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.4em;
  }
  .footer_back h4{
    font-size: 18px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.4em;
    margin: 0 0 20px;
  }
  .footer_back h6{
    font-size: 9px;
    text-align: center;
    color: #fff;
    letter-spacing: 0m;
    line-height: 1.4em;
  }

}
