@charset "UTF-8";

html{
    scroll-behavior: smooth;
}

header{
    top: -148px;
    transition: top 0.6s ease;
}
#makebanner{
    margin-top: 0 !important;
}
header.visible{
    top: 0 !important;
    z-index: 3000 !important;
}
#makebanner.visible{
    margin-top: 148px !important;
}

h2 {
    visibility: visible !important;
}

body{
    margin: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-style: normal;  
    background-color: #FFF;
}

a{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.header{
    display: block;
    width: 150%;
    height: 350px;
    margin-top: 0;
    border-radius: 0% 0% 80% 80%;
    position: relative;
    z-index: 0;
    left: -25%;

    background: linear-gradient(135deg, #32ca0c,  #107de2);
    background: -webkit-linear-gradient(-45deg, #32ca0c,  #107de2);
    background: -moz-linear-gradient(-45deg, #32ca0c,  #107de2);
    background-size: 150% 150%;
  
    animation-name: gradation;
    animation-duration: 4.0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes gradation{
    0%{
        background-position: 0% 0%;
    }
    100%{
        background-position: 100% 100%;
    }
}

.logo{
    display: block;
    width: 220px;
    height: auto;
    margin: 40px auto;
}

.logo-bugs{
    display: block;
    width: 160px;
    height: auto;
    margin: 40px auto;
}

.logo-bugs img{
    display: block;
    width: 160px;
}

/* ▼▼ロード時アニメーション▼▼ */
.loadAnim{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: auto;
    z-index: 2000;
    background: linear-gradient(135deg, #32ca0c,  #107de2);
    background: -webkit-linear-gradient(-45deg, #32ca0c,  #107de2);
    background: -moz-linear-gradient(-45deg, #32ca0c,  #107de2);
    background-size: 150% 150%;
    user-select: none;
}

.loadAnim{
    animation: loadAnim 1.5s ease 2s 1 reverse forwards;
}

@keyframes loadAnim{
    0%{
        opacity: 0;
        z-index: -1;
    }
    100%{
        opacity: 1;
    }
}

.loadAnimLogo{
    display: block;
    width: 100%;
    user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    overflow: auto;
    padding-bottom: 20px;
}

.loadAnimLogo{
    animation: loadAnim 0.2s linear 0s 1 normal forwards;
}

@keyframes loadAnimLogo{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.loadAnimLogo img{
    display: flex;
    justify-content: center;
    width: 320px;
    height: auto;
    margin: auto auto 4% auto;
    /* margin-bottom: 4%; */
}

.loadAnimLine{
    display: block;
    position: absolute;
    width: 100%;
    height: 10px;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-repeat: no-repeat;
    background-size: 0 0;
    animation: loadAnimLine 2.2s linear 0.3s 1 normal forwards;
}

@keyframes loadAnimLine{
    0%{
        background-position: bottom left;
        background-size: 0 2px;
    }
    10%{
        background-position: bottom left;
        background-size: 0 2px;
    }
    35%{
        background-position: bottom left;
        background-size: 100% 2px;
    }
    75%{
        background-position: bottom right;
        background-size: 100% 2px;
    }
    100%{
        background-position: bottom right;
        background-size: 0 2px;
    }
}

/* header{
    animation: loadAnimHeader 0 ease 2s 1 normal forwards;
}
@keyframes loadAnimHeader{
    0%{
        display: none !important;
    }
    100%{
        display: block !important;
    }
}
table#makebanner {
    animation: loadAnimMakeBanner 0 ease 2s 1 normal forwards;
}
@keyframes loadAnimMakeBanner{
    0%{
        margin-top: 0 !important;
    }
    100%{
        margin-top: 148px !important;
    }
} */
/* ▲▲ロード時アニメーション▲▲ */



/* ▼▼目次▼▼ */
.cta{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 85%;
    max-width: 1080px;
    margin: 40px auto;
    padding: 0 2.5% 40px;
    line-height: 40px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    border: 8px solid #25ad5d;
}

.cta a,
.cta a:visited{
    display: flex;
    margin: 0.25em auto;
    padding: 8px 20px;
    justify-content: center;
    width: 250px;
    height: 4em;
    line-height: 1.5;
    text-align: center;
    color: #25ad5d;
    font-weight: bold;
    text-decoration: none;
    font-size: 24px;
    transition: 0.3s;
    padding-bottom: 30px;
    white-space: wrap;
    flex-direction: column;
}

.cta a{
    background-image: url(https://gigaplus.makeshop.jp/bugsfarm//img/project/beginner-lp/cta-mark.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position-x: 50%;
    background-position-y: 100%;
}

.target{
    scroll-margin-top: 130px;
}
/* ▲▲目次▲▲ */

/* ▼▼コンテナ・エリア▼▼ */
.container {
    height: 100%;
}

.wrapper-h200 {
    height: 200%;
    min-height: 1000px;
}

.wrapper-h150 {
    height: 150%;
    min-height: 750px;

}

.wrapper-h125{
    height: 125%;
    min-height: 625px;
}

.wrapper-h100 {
    height: 100%;
    min-height: 500px;
}

.wrapper-h75 {
    height: 75%;
    min-height: 375px;
}

.grd-border{
    display: block;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #32ca0c,  #107de2);
}
/* ▲▲コンテナ・エリア▲▲ */

/* ▼▼テキスト▼▼ */
h3{
    display: block;
    font-size: 40px;
    padding: 25px;
    width: 80%;
    margin: 0 auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #161616;
    text-align: left;
}
h3.top {
    text-align: center;    
    margin: 30px auto 0;
}

.underline{
    display: block;
    width: 80%;
    border-bottom: 4px solid #c9c9c9;
    margin: 0 auto 30px;
    height: 0;
}

.underline::after{
    display: block;
    width: 16%;
    border-bottom: 4px solid #25ad5d;
    position: relative;
    content: "";
    z-index: 1;
}

.maintxt-mincho,
.maintxt-gothic{
    font-size: 16px;
    overflow: visible;
    margin: 0 auto;
    text-align: left;
    color: #000;

}
.maintxt-mincho{
    display: flex;
    justify-content: center;
    width: 90%;
    height: 80%;
    align-items: center;
    line-height: 9vh;
    letter-spacing: 0.1em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
}

.maintxt-gothic{
    display: flex;
    justify-content: left;
    width: 80%;
    line-height: 40px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;    
}

.mincho{
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
}

.white{
    color: #FFF;
}

.shadow{
    text-shadow: #000 0 4px 5px;
}

.black{
    color: #000;
}
/* ▲▲テキスト▲▲ */

/* ▼▼テキストアニメーション▼▼ */
.TxtFadeIn {
animation: TxtFadeIn 0.7s ease 3.5s 1 normal both;
}

/* fadeIn */
@keyframes TxtFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
/* ▲▲テキストアニメーション▲▲ */

/* ▼▼画像▼▼ */
.img-box{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 80%;
    margin: 40px auto 70px;
}

.single{
    justify-content: center;
    width: 100%;
}

.img-box a{
    width: 48%;
    margin: 1%;
}

.img-box img{
    width: 100%;
}

/* lightbox2 */
.lb-dataContainer{
    pointer-events: none !important;
}
.lb-closeContainer{
    display: none !important;
}
/* ▲▲画像▲▲ */


/* ▼▼バナーエリア▼▼ */
.banners{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.banners div{
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.banners div a{
    margin: 20px 30px;
    transition: 0.3s;
}

.banners div a img{
    width: 35vw;
    max-width: 500px;
}
/* ▲▲バナーエリア▲▲ */

/* ▼▼背景▼▼ */
.bg-1{
    background-image: url(https://gigaplus.makeshop.jp/bugsfarm//img/project/beginner-lp/bg-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
}
/* ▲▲背景▲▲ */

/* ▼▼ナビゲーションボタン▼▼ */
.fixed-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0;
    width: 80px;
    height: 60px;
    z-index: 1;
    border-radius: 10px 0% 0% 10px;
    background-color: #25ad5d;
    text-decoration: none;
}

.fixed-btn{
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      bottom: 40px;
      letter-spacing: 0.1em;
      transition: opacity 0.3s ease;
}
.fixed-btn.visible{
      opacity: 1;
      pointer-events: auto;
}

.buy{
    bottom: 120px;
}

.fixed-btn p{
    color: #FFF;
    font-size: 14px;
    display: flex;
}

.back{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 250px auto 100px; 
    width: 250px;
    height: 50px;
    border-radius: 25px;
    color: #FFF;
    background-color: #25ad5d;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.back p{
    color: #FFF;
    background-image: url(https://gigaplus.makeshop.jp/bugsfarm//img/project/beginner-lp/back.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position-x: 0%;
    background-position-y: 50%;
    width: 135px;
    text-align: right;
}

/* ▲▲ナビゲーションボタン▲▲ */

/* --SP-- */
@media screen and (max-width: 768px) {
/* ▼▼ロード時アニメーション▼▼ */
    .loadAnimLogo img{
        width: 45%;
    }
    .header{
        height: 150px;
    }
    .logo{
        height: 90px;
        width: auto;
        margin: 10px auto;
    }
    .logo-bugs {
        width: 90px;
        margin: 15px auto;
    }
    .logo-bugs img {
        width: 90px;
    }
/* ▲▲ロード時アニメーション▲▲ */

/* ▼▼目次▼▼ */
    .contents{
        width: 75%;
    }
    .ctahead{
        font-size: 24px;
        margin: 1em auto 2em;
    }
    .cta a, .cta a:visited {
        margin: auto;
        padding: 8px 0;
        width: 130px;
        height: 110px;
        font-size: 16px;
        background-size: 25px;
    }
    .cta a:active{
        transform: scale(1.2, 1.2);
        transform-origin: center;
    }
/* ▲▲目次▲▲ */

/* ▼▼コンテナ・エリア▼▼ */
    .grd-border{
        height: 10px;
    }
/* ▲▲コンテナ・エリア▲▲ */

/* ▼▼テキスト▼▼ */
    h3{
        font-size: 22px;
        width: 88vw;
        padding: 20px 0;
    }
    h3.top {
        font-size: 30px;
    }
    .underline{
        width: 88vw;
    }
    .maintxt-mincho,
    .maintxt-gothic{
        font-size: 14px;
        width: 88vw;
    }
    .maintxt-mincho{
        line-height: 5vh;
    }
    .maintxt-gothic{
        line-height: 30px;
    }
/* ▲▲テキスト▲▲ */

/* ▼▼画像▼▼ */
    .img-box {
        flex-wrap: wrap;
        width: 88vw;
    }
    .img-box a{
        width: 100%;
    }
    /* .img-box img{
        width: 100%;
    } */
    /* lightbox2 */
    .lb-outerContainer{
        margin-top: 30% !important;
    }
/* ▲▲画像▲▲ */

/* ▼▼バナーエリア▼▼ */
    .banners div a:hover{
        transition: 0.01s;
    }
    .banners div a:active{
        transform: scale(1.1, 1.1);
        transform-origin: center;
    }
    .banners div a img{
        width: 100%;
        min-width: none;
        max-width: none;
    }
/* ▲▲バナーエリア▲▲ */

/* ▼▼背景▼▼ */
    .bg-1{
        background-position-x: 60%;
    }
/* ▲▲背景▲▲ */

/* ▼▼ナビゲーションボタン▼▼ */
    .fixed-btn {
        width: 75px;
        height: 45px;
    }
    a.fixed-btn:active{
        background-color: #9ce08b;
        transition: background-color 0.3s ease;
        text-decoration: none !important;
    }
    .buy {
        bottom: 100px;
    }
    .fixed-btn p {
        font-size: 12px;
    }
    .back{
        margin: 150px auto 30px; 
        width: 200px;
        height: 40px;
        border-radius: 20px;
    }
    .back:active{
        background-color: #9ce08b;
        transition: background-color 0.3s ease;
        text-decoration: none !important;
    }
    .back p{
        background-size: 20px;
        width: 135px;
    }
/* ▲▲ナビゲーションボタン▲▲ */
}
/* --SP end-- */


/* --PC-- */
@media screen and (min-width: 769px) {
/* ▼▼ロード時アニメーション▼▼ */
    .logo,
    .header{
        min-height: 150px;
    }
/* ▲▲ロード時アニメーション▲▲ */

/* ▼▼目次▼▼ */
    .cta a:hover{
        transform: scale(1.2, 1.2);
        transform-origin: center;
    }
/* ▲▲目次▲▲ */

/* ▼▼バナーエリア▼▼ */
    .banners div a:hover{
        transform: scale(1.1, 1.1);
        transform-origin: center;
    }
/* ▲▲バナーエリア▲▲ */

/* ▼▼ナビゲーションボタン▼▼ */
    .fixed-btn{
        transition: 0.3s;
    }
    .fixed-btn:hover{
        transform: scale(1.2, 1.2);
        transform-origin: center;
        text-decoration: none !important;
    }
    .back:hover{
        transition: 0.3s ease;
        opacity: 0.7;
        text-decoration: none !important;
    }
/* ▲▲ナビゲーションボタン▲▲ */
    .lb-outerContainer,
    .lb-dataContainer{
        position: relative;
        top: -15vh;
    }
}
/* --PC end-- */


/* ▼▼レイアウト▼▼ */
.flex{
    display: flex;
    width: 100%;
    overflow: hidden;
}

.column{
    flex-direction: column;
}

.nwr{
    white-space: nowrap;
}

.mt20{
    margin-top: 20px;
}

.mt40{
    margin-top: 40px;
}

.mt60{
    margin-top: 60px;
}

.mb20{
    margin-bottom: 20px;
}

.mb40{
    margin-bottom: 40px;
}

.mb60{
    margin-bottom: 60px;
}

.mb100{
    margin-bottom: 100px;
}

.pt60{
    padding-top: 60px;
}

.pb60{
    padding-bottom: 60px;
}
/* ▲▲レイアウト▲▲ */

.lb-nav a.lb-next{
    right: -18px !important;
}
.lb-nav a.lb-prev{
    left: -18px !important;
}
.lb-nav a.lb-next,
.lb-nav a.lb-prev{
    position: relative;
    opacity: 1 !important;
}