@charset "utf-8";
/* CSS Document */
/*-----フォントの設定-----*/
/* Regular*/
 @font-face {
  font-family: 'GenJyuuGothic'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/GenJyuuGothic-Regular.ttf') format('truetype');
}
/* bold */
@font-face {
  font-family: 'GenJyuuGothic'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/GenJyuuGothic-Bold.ttf') format('truetype');
  font-weight: bold;
}
/* medium*/
 @font-face {
  font-family: 'GenJyuuGothic'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/GenJyuuGothic-Medium.ttf') format('truetype');
  font-weight: medium;
}
/* HelveticaWorld-Bold*/
 @font-face {
  font-family: 'HelveticaWorld-Bold'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/HelveticaWorld-Bold.ttf') format('truetype');
}
/* 03スマートフォントUI*/
 @font-face {
  font-family: '03スマートフォントUI'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/03スマートフォントUI.otf') format('truetype');
}
/*-----フォントの設定ここまで-----*/

/*-----共通設定-----*/

html{
	font-size: 62.5%;
    font-family: 'GenJyuuGothic';
}
p{
    font-size: 1.6rem;
}
img{
    max-width: 100%;
    
}

/*.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
/*.pc { display: block !important; }*/
.sp { 
    display: none !important;
}
.br-sp{
    display: none;
}
.br-tb{
    display: none;
}
/*-----共通設定ここまで-----*/



/**/
/**/
/**/
/**/
/**/
/*-----基本的にはここから下のコードを編集します。-----*/
/*-----振り分け番号のアルファベット(TV-)を検索をして下さい(ctrl+F)-----*/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/*スクロールボタン設定*/
html{
  scroll-behavior: smooth;
}

/* ボタン全体 */
#page_top{
  display: none;
  width: 100px;
  height: 100px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #562e00;
  border-radius: 50%;
  z-index: 1;
  }

  /* Font Awesome */
  #page_top::before {
  position: absolute;
  top:20%;
  left: 25%;
  content: '';/*何も入れない*/
  display: inline-block;
  width: 55px;/*画像の幅*/
  height: 55px;/*画像の高さ*/
  background-image: url(../img/angle-up-solid_white.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  
  }


/**/
/**/
/**/
/*header*/
/******* ヘッダーのスタイル ********/
header {
    position: fixed; /*** ← fixedで固定 ***/
    width: 100%; 
    height: 60px; 
    background: #562e00; 
    padding: 20px 30px 20px 0; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: center; 
	z-index: 10;
    justify-content:flex-end;
}
header .nav .menu li a{
   color: #ffffff;
   font-weight:bold;
   text-decoration: none;
   font-size: 2.4rem;
}
/*はじめは非表示*/
.content {
  opacity: 0;
}
.content.inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: .4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(-40px);/*上から*/
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*header項目追加*/
ul.menu {
    display: flex;
}

.header-tel:before{
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("../img/tel.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: top;
  margin-right: 5px;
}
.header-form:before{
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("../img/home.png");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: top;
  margin-right: 5px;
}
.header-tel,.header-form{
	height: 60px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.header-tel{
	border-right: 1px solid #ffffff
}
li.header-form {
    padding-left: 20px;
}
li.header-tel {
    padding-right: 20px;
}


/**/
/**/
/**/
/*top-view<!--TV-->*/
/**/
/**/
/**/
section#top-view {
    position: relative;
}
#top-view img{
    width: 100%;
}
.fvbtn-box {
    width: 35%;
    position: absolute;
    bottom: 15rem;
    left: 50%;
    transform: translateX(-50%);
}
/**/
/**/
/**/
/*<!--TVここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*targeting<!--TG-->*/
/**/
/**/
/**/
#targeting{
    background: url("../img/targeting-bg.png")no-repeat center center / cover;
    text-align: center;
}
.targeting-tittle {
        padding: 4.0rem 3.0rem;
        position: relative;
        background-image: url(../img/titlebg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }

.targeting-tittle h2{
    font-size: 3.0rem;
    color:#ffffff;
    margin-bottom: 2.0rem;  
}
.targeting-tittle h1{
    font-size: 4.0rem;
    color:#ffffff;
}
.targeting-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #5ebb00 transparent transparent transparent;
    left: 50%;
    transform: translateX(-60%) translateY(100%);
}
/*吹き出し部分*/
.targeting-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.targeting-tittle-box:before, .targeting-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.targeting-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.targeting-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/

.targeting-wrapper{
    padding: 4.0rem 1.5rem 12.0rem 1.5rem;
}
.targeting-wrapper p{
    margin:4.5rem 0 3.0rem 0;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
}
img.pc.targ-01 {
    width: 70%;
    margin-bottom:3em;
}

/**/
/**/
/**/
/*targeting<!--TGここまで-->*/
/**/
/**/
/**/



/**/
/**/
/**/
/*merit<!--MR-->*/
/**/
/**/
/**/
#merit{
    background: url("../img/merit-bg.png")no-repeat center center / cover;
    text-align: center;
}
.merit-tittle{
    padding: 6.0rem 0 7.0rem 0;
    position: relative;
    background-image: url(../img/titlebg.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}
.merit-tittle p{
    font-size: 4.0rem;
    color:#ffffff;
}
.merit-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #5ebb00 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
/*吹き出し部分*/
.merit-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.merit-tittle-box:before, .merit-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.merit-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.merit-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/


.merit-wrapper{
    padding: 12.0rem 1.5rem 16.8rem 1.5rem;
}
.merit-wrapper h2{
    font-size: 4.5rem;
    text-shadow: 4px 4px 0 #ffffff;
    font-weight: bold;
}
.merit-wrapper p{
    font-size: 2.2rem;
    margin: 5.3rem 0 7.6rem 0;
    line-height: 1.7;
    color: #FFF;
}
.merit-area img:nth-of-type(-n+3){
    margin-bottom: 4.5rem;
}
.merit-btn.btn {
    margin-top: 5.0rem;
}
/**/
/**/
/**/
/*merit<!--MRここまで-->*/
/**/
/**/
/**/


/**/
/**/
/**/
/*pr<!--PR-->*/
/**/
/**/
/**/
#pr{
    background-color: #ebf3d8;
    text-align: center;
    position: relative;
}
.left-side {
    position: absolute;
    left: 3%;
    top: 35%;
}
.right-side {
    position: absolute;
    right: 2%;
    top: 40%;
}
.pr-wrapper{
    max-width: 1000px;
    margin: 0 auto;
    padding: 10.4rem 1.5rem 8.5rem 1.5rem;
    box-sizing: content-box;
}
.pr-tittle img{
    margin-bottom: 3.5rem;
}
.pr-tittle p{
    font-size: 3.0rem;
    position: relative;
    display: inline-block;
}

.pr-tittle p::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 100px;
    margin-right: 2em;
    background-image: url(../img/face-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: 20px;
    }

.pr-tittle p::after{
    content: "";
    display: inline-block;
    width: 100px;
    height: 100px;
    margin-left: 2em;
    background-image: url(../img/face-2.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.dotline {
    content: "";
    display: block;
    width: 80px;
    background-size: 12px 12px;
    background-image: linear-gradient(to right, #f15a24 6px, transparent 6px);
    background-repeat: repeat-x;
    background-position: left bottom;
    padding-bottom: 5px;
    margin: 1em auto;
}
.pr-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5.7rem 0 9.2rem 0;
    position: relative;
    z-index: 1;
}
.pr-area img{
    margin-bottom: 2.0rem;
}
/**/
/**/
/**/
/*pr<!--PRここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*list<!--LI-->*/
/**/
/**/
/**/
#list{
    text-align: center;
}
.list-tittle{
    padding: 6rem 0 7rem 0;
    position: relative;
    background-image: url(../img/titlebg.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}
.list-tittle p{
    font-size: 4.0rem;
    color: #ffffff;
    letter-spacing: 0.1em;
}
.list-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #5ebb00 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
/*吹き出し部分*/
.list-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.list-tittle-box:before, .list-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.list-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.list-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/


.list-wrapper{
    padding: 7.8rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.list-area{
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}
.list-box{
    align-self: center;
    text-align: left;
}
.list-box p{
    position: relative;
    padding-left: 2.4rem;
    margin-left: 1.1rem;
}

.list-box-1 p:before{
    position: absolute;
    content: "";
    width: 1.1rem;
    height: 12.3rem;
    left: -15px;
    top: 7px;
    background-color: #000000;
}
.list-box-2 p:before{
    position: absolute;
    content: "";
    width: 1.1rem;
    height: 12.3rem;
    left: -15px;
    top: 7px;
    background-color: #000000;
}
.list-box-3 p:before{
    position: absolute;
    content: "";
    width: 1.1rem;
    height: 16.0rem;
    left: -15px;
    top: 7px;
    background-color: #000000;
}
.list-box p{
    font-size: 2.0rem;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 3.3rem;
}
.list-box-right{
    margin-right: 3.7rem;
}
.list-box-left{
    margin-left: 3.7rem;
}

/**/
/**/
/**/
/*list<!--LI-->*/
/**/
/**/
/**/



/**/
/**/
/**/
/*Q&A<!--QA-->*/
/**/
/**/
/**/
#qa {
    text-align: center;
    background-color: #ebf3d8;
}
.qa-wrapper{
    padding: 10.8rem 1.5rem 12.3rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.qa-tittle {
    padding-right: 30rem;
}
.qa-tittle-left p{
    font-size: 4.0rem;
    color:#f15a24;
    margin-left: 1.2rem;
    font-weight: bold;
}
.qa-tittle-left img{
    align-self: center;
}
.qa-tittle-right{
    align-self: center;
    font-size: 2.4rem;
    color: #562e00;
    font-weight: bold;
}
.qa-text {
    font-size: 2.4rem;
    color: #000;
    margin: -5rem 0 5rem 0;
    line-height: 1.7;
}
.qa-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10.4rem;
}

.qa-box{
    background-color:#fff;
    max-width: 473px;
    padding: 3.2rem 2.3rem;
    position: relative;
}

.qa-box:nth-of-type(-n+4){
    margin-bottom: 4.0rem;
}
.qa-box:before{
	background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 7px, rgba(86, 46, 0, 0.3) 0, rgba(86, 46, 0, 0.3) 10px); /* ストライプの色 */
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.qa-box h2 {
    font-size: 2.4rem;
    color: #009844;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
    position: relative;
    display: flex;
    align-items: center;
}
.qa-box h2:before {
    content: "";
    width: 1.2rem;
    height: 6.0rem;
    background-color: #009844;
    display: inline-flex;
    margin-right: 2rem;
}

.qa-box p{
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
    margin-top: 2.5rem;
    border-top: 2px dashed#009844;
    padding-top: 3.0rem;
}
/**/
/**/
/**/
/*Q&A<!--QAここまで-->*/
/**/
/**/
/**/



/**/
/**/
/**/
/*closing<!--CL-->*/
/**/
/**/
/**/
#closing {
    text-align: center;
    padding-bottom: 6rem;
}
.closing-tittle{
    padding: 4.0rem 0;
    position: relative;
    background-image: url(../img/titlebg.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}

.closing-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #5ebb00 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
.closing-tittle p{
    color: #ffffff;
    font-size: 4.0rem;
}
.closing-tittle-sb{
    margin-top: 3.6rem;
    border-top: 4px solid #c1da80;
    border-bottom: 4px solid #c1da80;
    display: inline-block;
    padding: 1.7rem 0;
}
.closing-tittle-sb p{
    font-size: 3.0rem;
    color:#fff;
    letter-spacing: 0.1em;
}
.closing-tittle-sb span{
    color:#ffe600;
}
.closing-wrapper{
    background-color: #fff;
}
.closing-area{
    padding: 7rem 1.5rem 0 1.5rem;
    
}
.closing-box01, .closing-box02{
    display: flex;
    justify-content: center;
}
.closing-box01{
    margin-bottom: 4rem;
}
.staff {
    width: 30%;
    align-self: end;
    margin-left: -7rem;
}
.closing-box02-in {
    width: 20%;
    padding-top: 2rem;
}
.closing-box02 iframe {
    margin-top: 2rem;
}
.tel-box{
    display: flex;
}
.tel-box img{
    align-self: center;
}
.tel-box .tel{
    font-size: 6.9rem;
    color:#e60012;
    font-family: 'HelveticaWorld-Bold';
    margin-bottom: 1.8rem;
    margin-right: 5.3rem;
}
.closing-box01 .time{
    font-size: 1.8rem;
    text-align: left;
}

.closing-box02-in img{
    align-self: center;
}
.closing-item02{
    margin: 0 2rem 0 4rem;
}
.closing-timetext, .closing-daytext, .closing-addresstext{
    position: relative;
    margin-left: 2.0rem;
}
.closing-timetext:before{
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 1.7rem;
    left: -15px;
    top: 4px;
    background-color: #ce4c2c;
}
.closing-daytext:before{
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 1.7rem;
    left: -15px;
    top: 4px;
    background-color: #ce4c2c;
}
.closing-addresstext:before{
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 1.7rem;
    left: -15px;
    top: 4px;
    background-color: #ce4c2c;
}
.closingtext:nth-of-type(-n+2){
    margin-bottom: 4.5rem;
}
.closingtext p{
    text-align: left;
    font-size: 2.0rem;
    margin-bottom: 0.8rem;
}
.closing-logo-area{
    background-color: #7ba918;
    padding: 4.0rem 0;
    position: relative;
    text-align: center;
}
.f-logo{
    font-size: 4.2rem;
    margin-bottom: 2.0rem;
    display: flex;
    position: relative;
    justify-content: center;
}
.f-logo::before{
    content: "";
    display: inline-flex;
    width: 50px;
    height: 50px;
    background-image: url(../img/mark.png);
    background-repeat: no-repeat;
    background-size: contain;

}
.closing-logo-area p{
    font-size: 1.4rem;
    color:#ffffff;
}
/**/
/**/
/**/
/*closing<!--CLここまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*voice<!--VO-->*/
/**/
/**/
/**/
#voice{
    background: url("../img/voice-bg.png")no-repeat center center / cover;
    text-align: center;
}
.voice-tittle{
    background: linear-gradient(#ea5b19,#c54732);
    padding: 4.0rem 0;
    position: relative;
}
.voice-tittle p{
    font-size: 4.0rem;
    color: #ffffff;
    letter-spacing: 0.1em;
}
.voice-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #c54732 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
/*吹き出し部分*/
.voice-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.voice-tittle-box:before, .voice-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.voice-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.voice-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/


.voice-wrapper{
    padding: 0 1.5rem 13.8rem 1.5rem;
}
.voice-sbtittle{
    margin: 8.7rem 0 7.9rem 0;
}
.voice-area{
    display: flex;
    background-color: #ffffff;
    max-width: 1057px;
    margin: 0 auto;
    padding: 4.3rem 3.1rem;
    border-radius: 2.2rem;
}
.voice-area:nth-of-type(-n+3){
    margin-bottom: 3.6rem;
}
.voice-area img{
    align-self: center;
}
.voice-box{
    font-size: 1.8rem;
    margin-left: 7.4rem;
    width: 740px;
}
.voice-text{
    text-align: left;
    line-height: 2.1;
    margin-bottom: 3.6rem;
}
.voice-name{
    text-align: right;
}
/**/
/**/
/**/
/*voice<!--VO-01~VO-03ここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*image<!--IM-->*/
/**/
/**/
/**/
#image{
    position: relative; 
}
#image img{
    width: 100%;
}
#image .btn-image {
    position: absolute;
    width: 20%;
    height: auto;
    bottom: 5%;
    right: 30%;
}
.btn-image img{
    max-width: 100%;
}
/**/
/**/
/**/
/*image<!--IMまで-->*/
/**/
/**/
/**/

/**/
/**/
/**/
/*エントリーフォームFM*/
/**/
/**/
/**/
body{
    margin: 0;
}
#form{
    padding-bottom: 6.5rem;
    text-align: center;
    background-color: #ebf3d8;
    
}
.entry-tittle {
    padding: 9rem 1.5rem 0rem 1.5rem;
    text-align: center;
}
.entry-tittle img{
    max-width: 100%;
}
form{
    max-width: 800px;
    background-color: #ffffff;
    margin: 0 auto;
    text-align: center;
}
.entry-text{
    margin: 4rem 0 6.0rem 0;
    font-size: 2rem;
    text-align: center;
    color: #000000;
    font-weight: bold;
    line-height: 1.7;
    padding: 0 2rem;
}
.entry-text span{
    background-color: #faf038;
}
.form-wrapper{
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}
th{
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    color: #562e00;
    text-align: left;
}



/* Table */
    th,
    td {
        padding: 1.5rem 1.25rem 1.5rem 0;
        display: table-cell;
    }
    th {
        width: 30%;
        vertical-align: middle;
    }
    td {
        width: 70%;
        text-align: left;
    }
    span.radio-text {
        font-size: 1.8rem;
        margin-right: 2rem;
    }
.input-text{
    border: 2px solid #562e00;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    
    }
textarea{
    border: 2px solid #562e00;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    height: 80px;
    font-size: 16px;
    } 

.personal-tittle{
    color: #562e00;
    font-size: 1.8rem;
    text-align: left;
    font-weight: bold;
    
}
h2.personal-tittle {
    margin: 2rem 0 1.0rem 0;
}
.personal-text span{
    font-size: 1.8rem;
}
.personal-link {
    margin-bottom: 20px;
}
.personal-link a{
    font-size: 1.6rem;
}
input.btn.btn-primary{
    margin: 0 0 6.5rem 0;
    text-align: center;
}

.btn-primary {
    align-items: center;
	text-decoration: none;
	width: 300px;
	padding: 1.0rem 0rem 1.0rem 0rem;
	font-weight: bold;
	background: #248b00;
	color: #ffffff;
	position: relative;
	transition: 0.5s;
    font-size: 2.8rem;
    border-radius: 100vh;
    margin-bottom: 3rem;
}

.btn-primary:hover {
	background: #36c702;
}


.select-01{
    border: 2px solid #562e00;
    background: #fff;
    padding: 1.5rem;
    
}
/* 任意と必須 */
span.text-any {
    font-size: 1.4rem;
    color: rgba(241,90,36,0.5);
}
span.text-Required{
    font-size: 1.4rem;
    color: #f15a24;

}

/* scroll */
.scroll-box{
    overflow:scroll;
    height: 150px;
    width: 100%;
    margin: 0 auto;
    /*background-color: #f3fcff;*/
    margin-bottom: 2.5rem;
    padding: 1rem;
    line-height: 1.5;
}
.scroll-box  p{
    text-align: left;
    font-size: 1.4rem;
}
/* スクロールの幅の設定 */
.scroll-box::-webkit-scrollbar {
 width: 10px;
 height: 10px;
}
 
/* スクロールの背景の設定 */
.scroll-box::-webkit-scrollbar-track {
 border-radius: 5px;
 background: rgba(110, 108, 108, 0.2);
}
 
/* ドラックできるスクロール部の設定 */
.scroll-box::-webkit-scrollbar-thumb {
 border-radius: 5px;
 background: #562e00;
}
/**/
/*ラジオボタン*/
/**/
.radio-btn {
    position: relative;
    margin: 5px 0;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    font-size: 1.6rem;
    margin-left: 15px;
  }
 
  /* ラジオボタンは非表示（透明化 requiredを使用したいため） */
 .radio-btn input[type=radio] {
   position: absolute;
   opacity: 0;
   z-index: -1; 
 }
 
  .radio-text {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: solid 2px #562e00;
    border-radius: 50%;
    box-sizing: border-box;
  }
  
  .radio-text:after {
    content: "";
    position: absolute;
    background: #562e00;
    border-radius: 50%;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    opacity: 0;
  }
  
   .radio-btn input:checked + .radio-text:after {
    opacity: 1;
  }
 /**/
 /*チェックボックス*/
 /**/
 .check-btn {
    position: relative;
    margin: 5px 0;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    font-size: 1.6rem;
    margin-left: 15px;
  }
 
 
  .check-text {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: solid 2px #562e00;
    box-sizing: border-box;
  }
  
  .check-text:after {
      content: "";
      opacity: 0;
      display: block;
      width: 16px;
      height: 10px;
      border-left-width: 2px;
      border-bottom-width: 2px;
      border-color: #562e00;
      transform: rotate(-45deg);
  }
  
   .check-btn input:checked + .check-text:after {
    opacity: 1;
  }
  /* チェックボックスは非表示（透明化 requiredを使用したいため） */
 .check-btn input[type=checkbox] {
   position: absolute;
   opacity: 0;
   z-index: -1; 
 }
/**/
/**/
/**/
/*エントリーフォームFMここまで*/
/**/
/**/
/**/



/**/
/**/
/**/
/*success*/
/**/
/**/
/**/
#success{
    text-align: center;
}
.success-tittle{
    padding: 9.0rem 1.5rem 0 1.5rem;
}
.success-warpper{
    max-width: 770px;
    margin: 0 auto;
    padding: 6.2rem 0;
}

.success-warpper h1{
    font-size: 4.0rem;
    color: #562e00;
    font-weight: bold;
    
}
.success-text{
    margin: 4.0rem 0 6.0rem 0;
    font-size: 2.0rem;
    text-align: center;
    color: #562e00;
    font-weight: bold;
    line-height: 1.7;
}
.success-text span{
    background-color: #faf038;
}
.success-warpper a{
    font-size: 2.0rem;
    color: #562e00;

}


a.success-btn {
	display: flex;
    justify-content: space-evenly;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 220px;
	margin: auto;
	padding: 1rem 4rem 1rem 3rem;
	font-weight: bold;
	background: #f15a24;
	color: #ffffff;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}
a.success-btn::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	transform: rotate(230deg);
}
a.success-btn:hover {
	background: #f17724;
	color: #ffffff;
}
/**/
/**/
/**/
/*successここまで*/
/**/
/**/
/**/


/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:640px) and (max-width:959px) {
    .br-tb{
    display: block;
}
    .br-pc{
        display: none;
    }

/*FV*/
    .fvbtn-box {
        width: 50%;
        bottom: 5rem;
        left: 50%;
        transform: translateX(-50%);
    }
/*targeting*/
    .targeting-tittle-box::before {
    left: -12%;
}
    .targeting-tittle-box::after {
    right: -12%;
}
    .targeting-wrapper p{
        text-align: left;
    }
    .targeting-wrapper {
    padding: 4rem 1.5rem 6.0rem 1.5rem;
}
.targeting-wrapper {
    padding: 4rem 2rem;
}
img.pc.targ-01 {
        width: 80%;
    }
/*merit*/
.merit-wrapper h2 {
    width: 90%;
    margin: auto;
}
.merit-tittle p {
        line-height: 1.7;
    }
    .merit-tittle-box::before {
    left: -12%;
}
    .merit-tittle-box::after {
    right: -12%;
}
    .merit-wrapper {
    padding: 10rem 1.5rem 8rem 1.5rem;
}
.merit-area {
    padding: 2rem;
}
    .merit-wrapper p {
    margin: 3rem 0 4rem 0;
}
/*買取商品一覧*/
.pr-tittle p::before {
        width: 70px;
        margin-right: 0em;
        vertical-align: text-top;
    }
.pr-tittle p::after {
        width: 70px;
        margin-left: 0em;
        vertical-align: text-top;
    }
.dotline {
        margin: -3em auto 1em;
    }
.left-side {
        left: -6%;
        top: 30%;
    }
.right-side {
        right: -8%;
        top: 30%;
    }
.pr-area {
        margin: 5.7rem 0 4rem 0;
        justify-content: center;
        gap: 1rem 3rem;
    }

/*qa*/
.qa-area {
        justify-content: center;
        gap: 3rem;
    }
    .qa-box {
    max-width: 380px;
}
    .qa-area {
    margin-bottom: 5rem;
}
    .qa-wrapper {
    padding: 5rem 1.5rem 5rem 1.5rem;
}
    .qa-text {
    margin: 3rem 0 4rem 0;
}
    .qa-tittle {
        padding-right: 20rem;
    }

/*gallery*/
    .gallery-tittle-box::before {
    left: -2%;
}
    .gallery-tittle-box::after {
    right: -2%;
}
    .gallery-wrapper {
    padding: 5rem 1.5rem 4.1rem 1.5rem;
}
    .gallery-box {
    padding: 4.8rem 1rem;
    
}
    .gallery-icon {
    right: 0;
}
/*step*/
    .step-wrapper {
    padding: 6rem 1.5rem 6rem 1.5rem;
}
/*information*/
    .information-tittle h1::before {
    left: -2%;
}
    .information-tittle h1::after {
    right: -2%;
}
    .information-wrapper {
    padding: 6rem 1.5rem 8rem 1.5rem;
}
    .information-top {
    left: 25%;
}

/*closing*/
.closing-box02 {
    display: flex;
}
.closing-box02 iframe {
        margin-top: 2rem;
        width: 50%;
        margin-bottom: 3.5rem;
    }
    .closing-box01 {
    display: block;
}
.closingtext:nth-of-type(-n+2) {
        margin-bottom: 2rem;
    }
    .tel-box {
    justify-content: center;
}
    .closing-box01 .time {
    text-align: center;
}
    .closing-box02 {
    margin-left: 0px;
}
    .tel-box .tel {
    margin-bottom: 0rem;
    margin-right: 5.3rem;
}
    p.time {
    margin-bottom: 2rem;
}
.staff {
        width: 37%;
        margin-left: -8rem;
        margin-bottom: -8rem;
    }
/*list*/
    .list-tittle-box::before {
    left: -6%;
}
    .list-tittle-box::after {
    right: -6%;
}
    .list-area{
    display: flex;
    margin-bottom: 5.0rem;
} 
    .list-wrapper {
    padding: 7.8rem 5rem;
}
    img.pc.list-area-img {
    max-width: 50%;
    align-self: center;
}
    .list-box-1 p:before {
    height: 23.0rem;
}
    .list-box-2 p:before {
    height: 26.0rem;
}
    .list-box-3 p:before {
    height: 29.0rem;
}
/*voice*/
    .voice-tittle-box::before {
    left: -2%;
}
    .voice-tittle-box::after {
    right: -2%;
}
    .voice-sbtittle {
    margin: 8.7rem 2.0rem 7.9rem 2.0rem;
}
    img.voice-sbtittle {
    max-width: 90%;
}
/*pr*/
    .pr-wrapper {
    padding: 5rem 1.5rem 5rem 1.5rem;
}
/*フォーム*/
.entry-tittle {
        padding: 3rem 1.5rem 0rem 1.5rem;
        text-align: center;
    }
}


