@charset "utf-8";
/* CSS Document */
/*-----共通設定-----*/
html{
	font-size: 62.5%;
    /*notosanで代用*/
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
p{
    font-size: 1.6rem;
    color: #1a1a1a;
}
img{
    max-width: 100%;
}
h1,h2{
    font-weight: 700;
}

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

.web-toy {
  position: relative;
  display: inline-block;
  padding: 0 45px;
    color: #1499a9;
    font-size: 2.7rem;
        margin-bottom: 0.8rem;
        font-weight: 700;
}
.web-toy-white{
    color:#ffffff;
}
.web-toy:before, .web-toy:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #1499a9;
  
}
.web-toy-white:before, .web-toy-white:after {
  background-color: #ffffff;
  
}
.web-toy:before {
  left:0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.web-toy:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.btn:hover{
    opacity: 0.9;
}
/*-----共通設定ここまで-----*/



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

/* ボタン全体 */
#page_top{
  width: 100px;
  height: 100px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-image: linear-gradient(80deg, #4adf91, #b5ea21);
  border-radius: 50%;
  z-index: 1;
  }

  /* Font Awesome */
  /*#page_top::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f106'; 
  font-size: 50px;
  color: rgb(255, 255, 255); 
  position: absolute;
  height: 60px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  
  }
*/

#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-image: linear-gradient(80deg,#b5ea21 , #4adf91);
    padding: 20px 30px 20px 0; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: center; 
	z-index: 1;
    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/from.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-tel span {
    font-size: 14px;
    font-weight: 600;
}
li.header-form {
    padding-left: 20px;
}
li.header-tel {
    padding-right: 20px;
	line-height: 0.8;
}

/**/
/**/
/**/
/*first-view<!--FV-->*/
/**/
/**/
/**/
#first-view{
    position: relative;
}
#first-view .pc{
    max-width: 100%;
}
#first-view .btn-first-view {
    position: absolute;
    width: 50%;
    height: auto;
    bottom: 6%;
    right: 21%;
}
.btn-first-view img{
    max-width: 100%;
}

/**/
/**/
/**/
/*<!--FV-01~FV-06ここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*targeting<!--TG-->*/
/**/
/**/
/**/
#targeting{
    text-align: center;
}
.targeting-tittle{
    margin-bottom: 3.0rem;
}
.targeting-wrapper{
    max-width: 926px;
    padding: 6.0rem 1.5rem 6.0rem 1.5rem;
    margin:  0 auto;
}
.targeting-box{
    display: flex;
    justify-content:center; 
    flex-wrap: wrap;
}
.targeting-item{
    max-width: 395px;
    margin-bottom: 3.0rem;
    text-align: left;
}

.targeting-item-left{
    margin-right: 6.0rem;
}
.targeting-item h2{
    color:#f99b2b;
    font-size: 3.8rem;
    text-align: left;
    border-right: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    display: inline-block;
    padding: 0 1.3rem 0.8rem 1.3rem;
    margin-bottom: 1.3rem;
}
.targeting-item h3{
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 1.3rem;
    letter-spacing: -0.07em;
}
.targeting-item p{
    margin-bottom: 3.0rem;
    height: 120px;
}
/**/
/**/
/**/
/*targeting<!--TGここまで-->*/
/**/
/**/
/**/



/**/
/**/
/**/
/*pr<!--PR-->*/
/**/
/**/
/**/
#pr{
    background: url("../img/pr-bg.jpg")no-repeat center center / cover;
    text-align: center;
}
.pr-wrapper{
    padding: 14.5rem 1.5rem;
}
.pr-area{
    max-width: 1000px;
    margin: 0 auto;
    padding: 7.4rem 0 9.6rem 0;
    background-color:#ffffff;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
.pr-tittle{
    margin-bottom: 9.0rem;
}
.pr-box{
    max-width: 700px;
    margin: 0 auto;
}
.pr-item:nth-of-type(-n+2){
    margin-bottom: 8.4rem;
}
.pr-item h2{
    font-size: 3.8rem;
    color:#f99b2b;
    margin-bottom: 3.0rem;
    text-align: left;
}
.pr-col {
    display: flex;
    margin: 0 4.8rem;
}
.pr-col p{
    text-align: left;
    margin-left: 4.0rem;
    line-height: 1.7;
}
/**/
/**/
/**/
/*pr<!--PRここまで-->*/
/**/
/**/
/**/

/**/
/**/
/**/
/*voice<!--VO-->*/
/**/
/**/
/**/
#voice{
    background: url("../img/voice-bg.jpg")no-repeat center center / cover;
    text-align: center;
}
.voice-wrapper{
    padding: 9.2rem 1.5rem 8.8rem 1.5rem;
}
.voice-tittle{
    margin-bottom: 6.8rem;
}
.voice-box{
    display: flex;
    max-width: 870px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
    padding: 4.2rem 5.3rem;
}
.voice-box img{
    align-self: center;
}
.voice-box:nth-of-type(-n+3){
    margin-bottom: 5.8rem;
}
.voice-item{
    margin-left: 5.2rem;
    text-align: left;
}
.voice-text{
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}
.voice-name{
    font-size:2.0rem;
    font-weight: bold;
    color:#f99b2b;
    margin-bottom: 15px;
}
/**/
/**/
/**/
/*voice<!--VOここまで-->*/
/**/
/**/
/**/


/**/
/**/
/**/
/*merit<!--MR-->*/
/**/
/**/
/**/
#merit{
    background-color: #f99b2b;
}
.merit-wrapper{
    max-width: 1000px;
    margin: 0 auto;
    padding: 5.6rem 1.5rem;
}
.merit-wrapper h3{
    font-size: 7.0rem;
    text-align: center;
    color:#ffffff;
    margin-bottom: 4.8rem;
    font-weight: 800;
}
.merit-h3-01{
    font-size: 9.0rem;
    letter-spacing: -0.1em;
}
.merit-h3-02{
    font-size: 8.4rem;
    margin: 0 15px;
}
.merit-tittle{
    margin-bottom: 8.3rem;
}
.merit-item{
    display: flex;
    margin-bottom: 7.6rem;
}
img.pc.meritimg-pc {
    max-width: 50%;
}
.merit-col{
    margin:4.0rem 0 0 5.1rem;
    position: relative;
}
.merit-col01::before{
    content: url(../img/merit01.png);
    position: absolute;
    top:-10%;
    right: 0;
    
}
.merit-col02::before{
    content: url(../img/merit02.png);
    position: absolute;
    top:-10%;
    right: 0;
    
}
.merit-col03::before{
    content: url(../img/merit03.png);
    position: absolute;
    top:-10%;
    right: -2rem;
    
}
.merit-col h2{
    font-size: 4.0rem;
    color:#ffffff;
    margin-bottom: 4.4rem;
    letter-spacing: 0.1rem;
}
.merit-col p{
    color:#ffffff;
    line-height: 1.7;
	padding-right:6.4rem;
	
}
/**/
/**/
/**/
/*merit<!--MRここまで-->*/
/**/
/**/
/**/

/**/
/**/
/**/
/*step<!--ST-->*/
/**/
/**/
/**/
#step{
    background-color: #eaeaea;
    text-align: center;
}
.step-wrapper{
    padding: 12.8rem 1.5rem 7.2rem 1.5rem;
}
.step-tittle{
    margin-bottom: 7.3rem;
}
p.step-tittle-min {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 18px;
}
.step-box h2{
    font-size: 7.2rem;
    color: #f99b2b;
    margin: 9.4rem 5.0rem;
    letter-spacing: -0.05em;
    font-weight: 800;
}
.step-box h2 span{
    font-size: 9.0rem;
}
/**/
/**/
/**/
/*step<!--STここまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*closing<!--CL-->*/
/**/
/**/
/**/
#closing{
    background: url("../img/closing-bg.jpg")no-repeat center center / cover;
    text-align: center;
}
.closing-wrapper{
    padding: 5.0rem 1.5rem 0;
}
.closing-wrapper h1{
    font-size: 7.3rem;
    color: #f99b2b;
    margin-bottom: 4.2rem;
    font-weight: 800;
}
.closing-btn{
    margin-bottom: 3.0rem;
}
.closing-btn p{
    font-size: 2.7rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.closing-box-01{
    display: flex;
    justify-content: center;
    color:#ffffff;
}
.closing-box-01 p{
    color:#ffffff;
}
.closing-kanki-text{
    margin-bottom: 3.3rem;
}
.tel-text{
    font-size: 1.9rem;
    align-self: center;
    border-right: 1px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding: 0 1.3rem 0.8rem 1.3rem;
    font-weight: 700;
}
.tel{
    font-size: 6.3rem;
    margin: 0 1.7rem;
    font-weight: 700;
}
.time{
    font-size: 1.8rem;
    align-self: center;
}
.closing-box-02{
    background-color: #ffffff;
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    padding: 1.0rem 4.3rem 1.6rem 4.3rem;
    margin-bottom: 8px;
    justify-content: space-evenly;
}
.address{
    align-self: center;
    text-align: left;
    margin-left: 3.2rem;
    font-size: 2.4rem;
}
.closing-box-03 {
    display: flex;
    margin: 0 auto;
    width: 640px;
    text-align: left;
}
.closing-box-03 li{
    font-size: 1.6rem;
    line-height: 1.3;
}
.kyoka-ban{
    margin: 0 1.0rem;
}
.copyright{
    color:#ffffff;
    padding: 2.4rem 0;
}
.tel-closing[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}
/**/
/**/
/**/
/*closing<!--CLここまで-->*/
/**/
/**/
/**/







/**/
/**/
/**/
/*エントリーフォームFM*/
/**/
/**/
/**/
body{
    margin: 0;
}
#form{
    padding-bottom: 6.5rem;
    text-align: center;
    background-color: #feebd5;
    
}
.entry-tittle {
    padding: 9rem 1.5rem 0 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;
    font-weight: bold;
    line-height: 1.7;
    padding: 0 2rem;
}
.entry-text span{
    background-color: rgba(255,158,44,0.7);
}
.form-wrapper{
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}
.form-table th{
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    color: #f99b2b;
    text-align: left;
}



/* Table */
    .form-table th,
    .form-table td {
        padding: 1.5rem 1.25rem 1.5rem 0;
        display: table-cell;
    }
    .form-table th {
        width: 30%;
        vertical-align: middle;
    }
    .form-table td {
        width: 70%;
        text-align: left;
        line-height: 1.5;
    }
.input-text{
    border: 2px solid #f99b2b;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    font-size: 1.6rem;
    
    }
textarea{
    border: 2px solid #f99b2b;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    height: 80px;
    font-size: 1.4rem;
    } 

.personal-tittle{
    color: #f99b2b;
    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-image: linear-gradient(80deg, #b5ea21, #4adf91);
	color: #ffffff;
	position: relative;
	transition: 0.5s;
    font-size: 3.6rem;
    margin-bottom: 3rem;
}

.btn-primary:hover {
	background-image: linear-gradient(80deg, #4adf91, #b5ea21);
    
	color: #ffffff;
}
.select-01{
    border: 2px solid #f99b2b;
    background: #fff;
    padding: 1.5rem;
    
}
/* 任意と必須 */
span.text-any {
    font-size: 1.4rem;
    color: #1a1a1a;
}
span.text-Required{
    font-size: 1.4rem;
    color: #1499a9;

}

/* scroll */
.scroll-box{
    overflow:scroll;
    height: 150px;
    width: 100%;
    margin: 0 auto;
    background-color: #feebd5;
    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: #f99b2b;
}
/**/
/*ラジオボタン*/
/**/
.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 #f99b2b;
   border-radius: 50%;
   box-sizing: border-box;
 }
 
 .radio-text:after {
   content: "";
   position: absolute;
   background: #f99b2b;
   border-radius: 50%;
   top: 2px;
   bottom: 2px;
   left: 2px;
   right: 2px;
   opacity: 0;
 }
 
  .radio-btn input:checked + .radio-text:after {
   opacity: 1;
 }
 
p.form-tel-text {
    font-size: 12px;
}
label.personal-text.check-btn {
    font-size: 16px;
}


/**/
/**/
/**/
/*エントリーフォームFMここまで*/
/**/
/**/
/**/



/**/
/**/
/**/
/*success*/
/**/
/**/
/**/
.body_success{
    background-color: #feebd5;
}
#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: #f99b2b;
    font-weight: bold;
    
}
.success-text{
    margin: 4.0rem 0 6.0rem 0;
    font-size: 2.0rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: bold;
    line-height: 1.7;
}
.success-text span{
    background-color: rgba(255,158,44,0.7);
}
a.success-btn {
	display: flex;
    font-size: 2.0rem;
    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-image: linear-gradient(80deg, #b5ea21, #4adf91);
	color: #ffffff;
	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-image: linear-gradient(80deg, #4adf91, #b5ea21);
	color: #ffffff;
}
/**/
/**/
/**/
/*successここまで*/
/**/
/**/
/**/






























@media screen and (min-width:640px)and (max-width:879px) {
    .targeting-item {
        max-width: 650px;
        margin-bottom: 3.0rem;
        text-align: left;
        display: flex;
    }
    img.targeting-box-in {
    align-self: center;
    }
    .targeting-item img {
            max-width: 50%;
    }
    .targeting-item-left {
        margin-right: 0rem;
    }
    .targeting-box-in {
    margin-right: 20px;
}
}

 
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:640px) and (max-width:819px) {
/*targeting*/
.targeting-item-left {
    margin-right: 0;
}
/*.targeting-item img{
    max-width: 90%;
}*/
.merit-item img{
    align-self: end;
}
.merit-wrapper h3{
    letter-spacing: -0.05em;
}
.merit-wrapper h3 span {
    font-size: 7.2rem;
}
.merit-col03::before {
    right: 0%;
}
    
.closing-wrapper h1 {
    font-size: 6.0rem;
    letter-spacing: -0.05em;
}
.step-box h2 span {
    font-size: 8.0rem;
}
.step-box h2 {
    font-size: 5.8rem;
    margin: 5rem 7rem;
    line-height: 1.3;
    
}
td {
    padding: 3.5rem 3rem;
}
}
