@charset "UTF-8";

:root{
    --mainC:#016DB8;
    --sabC: #B0CAE4;
    --text: #444444;
    
}

:root{
    --size0: 3vw; 
    --size1: 5vw; 
    --size2: 10vw;
    --size3: 15vw;
    --min-viewport: 428;
    --max-viewport: 1440;
}

html{
    scroll-behavior: smooth;
}

body{
    color: var(--text);
    font-family: ;
}

body,
h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
}


a{
    text-decoration: none;
    color: #ffffff;
}

a:hover{
    opacity: 0.8;
}

.noto{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
}


::after,::before{
    box-sizing: border-box;
}

* {
/* a 傾き */  --slope: calc((var(--max-size) - var(--min-size))/ (var(--max-viewport) - var(--min-viewport)));
/* b 切片 */  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
/* y = ax + b 可変サイズ */  --fluid-size: calc(var(--slope) * 100vw + var(--intercept)/ 16 * 1rem);
/* clamp(最小サイズ, 可変サイズ, 最大サイズ) */  --clamp-size: clamp(var(--min-size)/ 16 * 1rem, var(--fluid-size), var(--max-size)/ 16 * 1rem); 
}

.container {
    display: grid;
    grid-template-columns: var(--size1) auto var(--size1);
    /* row-gap: 40px; */
  }

.container > *{
    grid-column: 2;
}

.header{
    grid-column: 1 /-1;
    background-color: var(--mainC);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: var(--size3);
}



.header img{
    padding-block: 1%;
    width: max(100px, var(--size2));
}

.navbtn {  
    all: unset;
    outline: revert;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    width: max(18px, var(--size1));  
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    color: #ffffff;   

}

/* ハンバーガー */
/* beforeとafterはbuttonに対してつけることで3本にしている */

.navbtn-bar,.navbtn::before,.navbtn::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    grid-area: 1 / 1;
    transition: transform 0.5s;
}

.navbtn::before{
    transform: translateY(10px);
}

.navbtn::after{
    transform: translateY(-10px);
}

/* 閉じる×ボタン */

.open .navbtn-bar{
    transform: scale(0);
    /* これで中央バーを隠す */
}

.open .navbtn::before{
    transform: translateY(0) rotate(45deg);
    /*  translateYは上下の移動 Xなら左右*/
}

.open .navbtn::after{
        transform: translateY(0) rotate(-45deg);
}

.open .navbtn{
    z-index: 30;

}


.nav{
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mainC);
    color: #ffffff;
    z-index: 20;
    transition: transform 0.5s;
    opacity: 0.9;
}
.open .nav{
    transform: translate(0, 100%);
}
.open{
    position: fixed;
    overflow: hidden;
    width: 100%;
}

.center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.nav ul{
    text-align: center;
    margin-top: 2%;
    width: 60%;
}
.nav ul li{
    padding: 3% 3%;
    --min-size: 12;
    --max-size: 20; 
    font-size: var(--clamp-size); 
    border-bottom: 1px solid #ffffff; 
}
.nav ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.navbtn::before{
    transform: translateY(8px);
}

.navbtn::after{
    transform: translateY(-8px);
}





.hero{
    display: revert;
    grid-column: 1 / -1;
    background-image: url(../img/back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: 424px; */
    position: relative;
    aspect-ratio: 10 / 6.6;
    
}

h1{
   
}

h1 img{
    /* display: none; */
    /* position: absolute;  F5でTOPへ戻ってしまう*/
    position: absolute;
    top: 30%;
    left: 20%;
    width: 17%;
    min-width: 100px;
    height: auto;
    
}

.sec01{
    display: revert;
    grid-column: 1 / -1;
    background-image: url(../img/ez05.png); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    background-color: var(--mainC);
    color:  #ffffff;
    /* aspect-ratio: 10 / 3.3; */
    

}

.text{
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: var(--size3) 1fr var(--size3);
    grid-template-rows: auto;
    background-color: var(--mainC);
    opacity: 0.8; 
    
}

.text h2{
    grid-column: 2/2;
    text-align: center;
     /* padding-left: 25%; */
    --min-size: 24;
    --max-size: 32; 
    font-size: var(--clamp-size);
    font-family: "Lora";

}

.text p{
    grid-column: 2/2;
    padding: 2% 0;
    --min-size: 14;
    --max-size: 24; 
    font-size: var(--clamp-size); 
    text-align: center;
    }

.box{
    grid-column: 2/2;
    width: 75%;
    /* min-width: 175px; */
    margin: 3% auto;
    text-align: center;
    

}

.inner_text{
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* width: 32vw; */
    /* min-width: 350px; */
}


.inner_text img{
    text-align: center;
    align-items: center;
    width: 50%;
    height: auto;
    padding: 1%;
    box-sizing: border-box;
}

.sec02{
     grid-column: 1 / -1;
     width: 100%;
   
    

}
.sec02 h3{
    text-align: center;
    padding-top: 5%;
    --min-size: 18;
    --max-size: 32; 
    font-size: var(--clamp-size);  

}

.card{
    width: 100%;
    

}

.card ul{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 3% 0;
   
}

.card ul li{
    /* grid-row: 1/4; */
    width: 45%;
    height: auto;
    border: solid 1px #cccccc;
    border-radius: 10px;
    text-align: center;
    padding: 1%;
    margin: 1%;
}

.inner_crd{
    width: 80%;
    margin: 0 auto;

}

.sec02 ul li img{
    width: 100%;
    max-width: 400px;
    height: auto;
      
}

.sec02 ul li h4{
    text-align: left;
    --min-size: 12;
    --max-size: 24; 
    font-size: var(--clamp-size);
    height: var(--size1);
    margin: 1rem 0 1.5rem;
}
.sec02 ul li p{
    padding-bottom: 10%;
    --min-size: 10;
    --max-size: 18; 
    font-size: var(--clamp-size); 
    text-align: left;

}



.sec03{
    grid-column: 1 / -1;
    background-image: url(../img/ez03.jpg); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-bottom: 5%;
    
}

.arrow_01{
    display: grid;
    grid-template-columns: var(--size3) 1fr var(--size3);
    display: none;
}

.arrow_02{
    display: grid;
    grid-template-columns: var(--size1) 1fr var(--size1);
}

.arrow_01 ul{
    grid-column: 2;
    margin: 3% auto;
    display: flex;
    justify-content: space-between;
    display: none;

       
}

.arrow_02 ul{
    grid-column: 2;
    width: 100%;
    /* border: 1px solid var(--text); */
    margin: 3% auto;
   

       
}


.arrow_02 ul li img{
    
     height: auto;
    width: 100%;  
}


.arrow_02 ul li.item1{
    /* grid-row: 1/4; */
    margin-top: 2%;

}
.arrow_02 ul li.item2{
     /* height: 500px; */
    
}
.arrow_02 ul li.item3{
    margin-inline: 2%;
    /* height: 600px; */

}
.arrow_02 ul li.item4{
    /* height: 600px; */

}
.arrow_02 ul li.item5{
    margin-inline: 2%;
    }
    .arrow_02 ul li.item6{
   
}
.arrow_02 ul li.item7{
    margin-inline: 2%;
    

}




.sec03 h3{
    text-align: center;
    padding-top: 5%;
    --min-size: 20;
    --max-size: 24; 
    font-size: var(--clamp-size);  

}

.sec04{
    grid-column: 1 / -1;
    

}

.sec04 h3{
    text-align: center;
    padding-top: 5%;
    --min-size: 20;
    --max-size: 24; 
    font-size: var(--clamp-size);  

}

.qa{
    height: 500px;
    display: grid;
    grid-template-columns: var(--size1) 1fr var(--size1);
    position: relative;
}

.qa table{
    /* border: solid 1px #444444; */
    margin: 3% auto;
    grid-column: 2;
    border-collapse:collapse;
    color: #000000;
}

.qa table tr{
    border: solid 1px #ffffff;

}


.qa table th{
    width: 30%;
    padding: 1% 2%;
    /* border: solid 1px #444444; */
    background-color: var(--sabC);
    --min-size: 12;
    --max-size: 20; 
    font-size: var(--clamp-size);  

}

.qa table td{
    width: 70%;
    /* border: solid 1px #444444; */
    padding: 0 2%;
    background-color: #cccccc;
    --min-size: 12;
    --max-size: 20; 
    font-size: var(--clamp-size);  

}

.deco{
   
    grid-column: 2;
}

.icon_graph{
    position: absolute;
    right: 20px;
    top: -15px;
    --min-size: 80;
    --max-size: 300; 
    width: var(--clamp-size);
    line-height: 0;
    z-index: -1;
    opacity: 0.3;
}

.icon_maney{
    position: absolute;
    left: 30px;
    top: -30px;
    --min-size: 80;
    --max-size: 120; 
    width: var(--clamp-size);
    line-height: 0;
    opacity: 0.5;
}


.icon_sec{
    position: absolute;
    right: 20px;
    bottom: -10px;
    --min-size: 50;
    --max-size: 100; 
    width: var(--clamp-size);
    line-height: 0;
    opacity: 0.5;
}




.footer{
    background-color: var(--mainC);
    /* height: 700px; */
    width: 100%;
    margin: 20px 0 0;
}

.footer{
    background-color: var(--mainC);
    /* height: 700px; */
    margin: 20px 0 0;
}

.inner_footer{
    display: grid;
    grid-template-columns: var(--size1) 1fr var(--size1);
}

.conva{
    grid-column: 2;
    width: 100%;
    height: auto;
    background-color: #FEA15D;
    border-radius: 50px;
    margin: 10% auto;

}

.conva p{
    --min-size: 16;
    --max-size: 36; 
    font-size: var(--clamp-size);  
    color: var(--text);
    text-align: center;
    padding: 5%;
}

.inner_footer > a{
    grid-column: 3;
}

.up_top{
    display: block;
    margin: 10% auto;
    width: 100%;
    height: auto;
    

}
.sns{
    display: flex;
    justify-content: space-around;
    grid-column: 2;
    width: 75%;
    height: auto;
    margin: 3% auto;
}

.sns a{
    line-height: 0;

}



.under_footer{
    grid-column: 2;
    width: 100%;
    height: auto;
    /* border: 1px solid #ffffff; */
    margin: 0 auto;
        
}

.under_footer ul{
    padding: 2% 0%;
    /* margin: 0 5%; */
    width: 100%;
    text-align: center;

}

.under_footer ul li{
    color: #ffffff;
    padding-block: 1%; 
    width: 100%;
    --min-size: 14;
    --max-size: 24; 
    font-size: var(--clamp-size);  

}



.info li:last-child{

    border-bottom: 1px solid #ffffff;
    width: 50%;
    text-align: center;
    padding-bottom: 10px;
    margin: auto;
}





.footer > p{
    text-align: center;
    color: #ffffff;
    --min-size: 12;
    --max-size: 18; 
    font-size: var(--clamp-size);  
    padding-bottom: 1%;
}

@media (min-width: 429px) and (max-width: 999px){

    .navbtn::before{
        transform: translateY(10px);
    }
    
    .navbtn::after{
        transform: translateY(-10px);
    }

    .box{
        grid-column: 2/2;
        width: 50%;
        /* min-width: 175px; */
        margin: 3% auto;
        text-align: center;
        
    
    }

    .icon_graph {
        position: absolute;
        right: 10%;
        top: -45px;
        --min-size: 80;
        --max-size: 300;
        width: var(--clamp-size);
        line-height: 0;
        z-index: -1;
        opacity: 0.3;
    }     
    
    .icon_maney {
        position: absolute;
        left: 5%;
        top: -30px;
        --min-size: 80;
        --max-size: 120;
        width: var(--clamp-size);
        line-height: 0;
        opacity: 0.5;
      }

      .icon_sec {
        position: absolute;
        right: 15%;
        bottom: -10px;
        --min-size: 50;
        --max-size: 100;
        width: var(--clamp-size);
        line-height: 0;
        opacity: 0.5;
      }

      .arrow_02 ul li img{
    
        height: auto;
       width: 75%;  
   }
   
   
   .arrow_02 ul li.item1{
       /* grid-row: 1/4; */
       margin-top: 2%;
       display: flex;
       justify-content: center;
   
   }
   .arrow_02 ul li.item2{
        /* height: 500px; */
        display: flex;
       justify-content: center;
       
   }
   .arrow_02 ul li.item3{
       margin-inline: 2%;
       /* height: 600px; */
       display: flex;
       justify-content: center;
   
   }
   .arrow_02 ul li.item4{
       /* height: 600px; */
       display: flex;
       justify-content: center;
   
   }
   .arrow_02 ul li.item5{
       margin-inline: 2%;
       display: flex;
       justify-content: center;
       }

    .arrow_02 ul li.item6{
        display: flex;
       justify-content: center;
      
   }
   .arrow_02 ul li.item7{
       margin-inline: 2%;
       display: flex;
       justify-content: center;
       
   
   }
   
   
   


}

@media (min-width: 1000px){

    .navbtn::before{
        transform: translateY(15px);
    }
    
    .navbtn::after{
        transform: translateY(-15px);
    }
    
    .open .navbtn{
        z-index: 30;

    }
    
    
    .nav{
        position: fixed;
        top: -100%;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: var(--mainC);
        color: #ffffff;
        z-index: 20;
        transition: transform 0.5s;
        opacity: 0.9;
    }
    .open .nav{
        transform: translate(0, 100%);
    }
    .open{
        position: fixed;
        overflow: hidden;
        width: 100%;
    }

    .center{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .nav ul{
        text-align: center;
        margin-top: 2%;
        width: 50%;
    }
    .nav ul li{
        padding: 3% 3%;
        --min-size: 12;
        --max-size: 20; 
        font-size: var(--clamp-size); 
        border-bottom: 1px solid #ffffff; 
    }
    .nav ul li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }


.hero{
    display: revert;
    grid-column: 1 / -1;
    background-image: url(../img/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: 424px; */
    position: relative;
    /* aspect-ratio: 10 / 6.6; */

}

h1{
   
}

h1 img{
    display: block;
    position: absolute;
    top: 30%;
    left: 20%;
    width: 17%;
    min-width: 150px;
    height: auto;
    
}

.sec01{
    display: revert;
    grid-column: 1 / -1;
    background-image: url(../img/ez05.png); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    background-color: var(--mainC);
    color:  #ffffff;
    /* aspect-ratio: 10 / 3.3; */
    

}

.text{
    display: grid;
    grid-template-columns: var(--size3) 1fr var(--size3);
    grid-template-rows: 80px 100px 1fr;
    width: 100%;
    margin: auto;

    
    
}

.text h2{
    grid-column: 2/2;
    text-align: center;
    padding-top: 1%;
     /* padding-left: 25%; */
    --min-size: 32;
    --max-size: 48; 
    font-size: var(--clamp-size); 
    font-family: "Lora";

}

.text p{
    grid-column: 2/2;
    padding: 2% 0;
    text-align: center;
    --min-size: 18;
    --max-size: 24; 
    font-size: var(--clamp-size);  
}

.box{
    grid-column: 2/2;
    width: 100%;
    margin: 5% auto;
    text-align: center;
}


.box{
    grid-column: 2/2;
    width: 100%;
    min-width: 175px;
    margin: 3% auto;
    text-align: center;
    

}

.inner_text{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: : 31vw;
    min-width: 350px;
}

.inner_text img{
    --min-size: 80;
    --max-size: 150; 
    width: var(--clamp-size);
    height: auto;
    z-index: 10;
    padding: 2%;
}

.sec02{
    display: revert;
    grid-column: 2;
    width: 100%;
    /* height: 800px; */
    

}

.sec02 h3{
    text-align: center;
    padding-top: 3%;
    --min-size: 20;
    --max-size: 32; 
    font-size: var(--clamp-size);  

}

.card{
    

}

.card ul{
    display: flex;
    justify-content: space-around;
    padding: 3% 0;
    flex-wrap: nowrap;
   
}

.card ul li{
    /* grid-row: 1/4; */
    width: 100%;
    height: auto;
    border: solid 1px #cccccc;
    border-radius: 10px;
    text-align: center;
    padding: 1%;
    margin: 1%;
}

.inner_crd{
    width: 80%;
    margin: 0 auto;

}

.card ul li img{
    width: 100%;
    max-width: 400px;
    height: auto;
      
}

.sec02 ul li h4{
    text-align: left;
    --min-size: 12;
    --max-size: 24; 
    font-size: var(--clamp-size);
    height: var(--size1);
}
.sec02 ul li p{
    padding-bottom: 10%;
    --min-size: 10;
    --max-size: 18; 
    font-size: var(--clamp-size); 
    
}

.sec03{
    grid-column: 1 / -1;
    background-image: url(../img/ez03.jpg); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-bottom: 5%;
    
}

.arrow_01{
    display: grid;
    grid-template-columns: var(--size3) 1fr var(--size3);
}

.arrow_02{
    display: grid;
    grid-template-columns: var(--size3) 1fr var(--size3);
    display: none;
}

.arrow_01 ul{
    grid-column: 2;
    width: 80%;
    /* border: 1px solid var(--text); */
    margin: 3% auto;
    display: flex;
    justify-content: space-between;

       
}

.arrow_02 ul{
    grid-column: 2;
    width: 80%;
    /* border: 1px solid var(--text); */
    margin: 3% auto;
    display: flex;
    justify-content: space-between;
    display: none;
       
}

.sec03 ul li img{
    width: 100%;
    height: auto;
}

.sec03 ul li.item1{
    /* grid-row: 1/4; */
    margin-right: 2%;

}
.sec03 ul li.item2{
     /* height: 500px; */
    
}
.sec03 ul li.item3{
    margin-inline: 2%;
    /* height: 600px; */

}
.sec03 ul li.item4{
    /* height: 600px; */

}
.sec03 ul li.item5{
    margin-inline: 2%;
    }
.sec03 ul li.item6{
   
}
.sec03 ul li.item7{
    margin-inline: 2%;
    

}

.arrow_01 ul li{
    opacity: 0;
  }
  
  /*==================================================
  ふわっ
  ===================================*/
  .visible {
    opacity: 0;
    /* transition: transform 5s ease-in; */
    animation-duration: 7s;
    animation-fill-mode: both;
  }
  /*　brightness　*/
  .effect {
    animation-name: fadeUpAnime;
    opacity: 1;
    /*transition: .15s;*/
  }

  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translatex(0px);
    
    }
  
    to {
      opacity: 1;
    transform: translatexX(100px);
    }
  }
  
  /* アニメーションスタートの遅延時間を決めるCSS*/
  
  .item1{
  animation-delay: 0s;
  }
  
  .item2{
    animation-delay: 1s;
    }
  
  .item3{
  animation-delay: 2s;
  
  }
  .item4{
    animation-delay: 3s;
    
    }
  .item5{
  animation-delay: 4s;
  
  }

  .item6{
    animation-delay: 5s;
    
    }
  .item7{
  animation-delay: 6s;
  
  }

.sec03 ul li img{
    
    max-width: 400px;
    height: auto;    
}



.sec03 h3{
    text-align: center;
    padding-top: 3%;
    --min-size: 20;
    --max-size: 32; 
    font-size: var(--clamp-size);  

}

.sec04{
    grid-column: 1 / -1;
    

}

.sec04 h3{
    text-align: center;
    padding-top: 3%;
    --min-size: 20;
    --max-size: 32; 
    font-size: var(--clamp-size);  

}

.qa{
    height: 500px;
    display: grid;
    grid-template-columns: var(--size3) 1fr var(--size3);
    position: relative;
}

.qa table{
    border: solid 1px #4444444;
    margin: 3% auto;
    grid-column: 2;
    border-collapse:collapse;
    color: #000000;
}

.qa table th{
    width: 30%;
    padding: 1% 0;
    border: solid 1px #4444444;
    background-color: var(--sabC);
    --min-size: 12;
    --max-size: 20; 
    font-size: var(--clamp-size);  

}

.qa table td{
    width: 70%;
    border: solid 1px #4444444;
    padding: 0 2%;
    background-color: #cccccc;
    --min-size: 12;
    --max-size: 20; 
    font-size: var(--clamp-size);  

}

.deco{
    position: relative;
    grid-column: 2;
}

.icon_graph{
    position: absolute;
    right: 20%;
    top: -15%;
    --min-size: 50;
    --max-size: 300; 
    width: var(--clamp-size);
    line-height: 0;
    z-index: -1;
    opacity: 0.3;
}

.icon_maney{
    position: absolute;
    left: 20%;
    top: -10%;
    --min-size: 50;
    --max-size: 120; 
    width: var(--clamp-size);
    line-height: 0;
    opacity: 0.5;
}


.icon_sec{
    position: absolute;
    right: 20%;
    bottom: -2%;
    --min-size: 50;
    --max-size: 100; 
    width: var(--clamp-size);
    line-height: 0;
    opacity: 0.5;
}


.footer{
    background-color: var(--mainC);
    /* height: 700px; */
    margin: 20px 0 0;
}

.inner_footer{
    display: grid;
    grid-template-columns: var(--size1) 1fr var(--size1);
}

.sns{
    display: flex;
    justify-content: space-around;
    grid-column: 2;
    width: 30%;
    height: auto;
    margin: 0 auto;
}

.conva{
    grid-column: 2;
    width: 50%;
    height: auto;
    background-color: #FEA15D;
    border-radius: 50px;
    margin: 5% auto;

}

.conva p{
    --min-size: 16;
    --max-size: 36; 
    font-size: var(--clamp-size);  
    color: var(--text);
    text-align: center;
    padding: 5%;
}

.up_top{
    grid-column: 2 / -1;
    display: block;
    margin: 10% auto;
    width: 50%;
    height: auto;
    

}

.under_footer{
    grid-column: 2;
    width: 50%;
    height: auto;
    /* border: 1px solid #ffffff; */
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    
}

.under_footer ul{
    padding: 5% 0%;
    margin: 0%;
    width: 100%;
    text-align: center;

}

.under_footer ul li{
    color: #ffffff;
    padding: 5%;
    width: 100%;
    --min-size: 12;
    --max-size: 18; 
    font-size: var(--clamp-size);  

}

.info li:last-child{

    border-bottom: none;
    width: 100%;
   
}


.footer > p{
    text-align: center;
    color: #ffffff;
    
}
}