@charset "utf-8";

/*--------------------------------------------
サイトの基本設定
--------------------------------------------*/
html {
	scroll-behavior: smooth;
}
html.contact{
	scroll-behavior: auto;
}
body{
    --color_main:#5A9637;
    --color_bg__01:#F5F5F2;
    --color_menu:#28AAC8;
    --font_Montserrat: 'Montserrat', sans-serif;
    font-family:'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #333333;
    line-height: 1.5;
    position: relative;
}
main.top{
    overflow: hidden;
}

/* リンクの下線を無しにする */
a{
    text-decoration: none;
    color: #333333;
}
ul{
    padding: 0;
}
li{
    list-style: none;
}
img{
    width: 100%;
}

/* コンテナ */
.container{
    max-width: 1000px;
    width: 90%;
    margin: auto;
}
.inner{
    padding: 0 100px;
}
.lower .inner{
    padding: 0 150px;

}
small{
    font-size: 14px;
    text-align: center;
    display: block;
    padding-bottom: 20px;
    margin-top: 0;
}

.sp_only{
    display: none;
}
@media  (max-width: 1000px) {
    .inner,.lower .inner{
        padding:0 50px;
    }
    small{
        margin-top: 1em;
    }    
}
@media  (max-width: 720px) {
    .inner,.lower .inner{
        padding: 0;
    }
    
    body{
        font-size: 14px;
    }
    .sp_only{
        display: block;
    }
}
/*--------------------------------------------
基本パーツ
--------------------------------------------*/
/* ボタン 幅は親に依存*/
.link_button01{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 18px 45px 18px 15px;
    position: relative;
    background-color: #ffffff;
    border-radius: 30px;
    font-size: 15px;
    color: var(--color_main);

    border:solid 1px var(--color_main);
}
.link_button01:hover{
    background: linear-gradient(to left,#00A5B9,#B0C55F,#669933);
    color: #ffffff;

    border:solid 1px #ffffff00;
}
.link_button01::after{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 36px; 
    top: calc(50% - 2px);
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg) translateY(-50%);
    color: inherit;
  }
.link_button03{
    content: "";
    position: relative;
}
.link_button03::after{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 36px; 
    top: calc(50% - 2px);
    border-top: solid 2px var(--color_main);
    border-right: solid 2px var(--color_main);
    transform: rotate(45deg) translateY(-50%);
    color: inherit;

}
.link_button03 input{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 18px 45px 18px 15px;
    background-color: #ffffff;
    border-radius: 30px;
    font-size: 15px;
    color: var(--color_main);

    border:solid 1px var(--color_main);
}
.link_button03 input:hover{
    background: linear-gradient(to left,#00A5B9,#B0C55F,#669933);
    color: #ffffff;

    border:solid 1px #ffffff00;
}
.link_button03:hover::after{
    border-top: solid 2px #ffffff;
    border-right: solid 2px  #ffffff;
}
.link_button_commingsoon{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 18px 45px 18px 15px;
    position: relative;
    background-color: #F2F2F2;
    border-radius: 30px;
    font-size: 15px;
    color: var(--color_main);

    border:solid 1px var(--color_main);
}
.link_button_commingsoon::after{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 36px; 
    top: calc(50% - 2px);
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg) translateY(-50%);
    color: inherit;
  }

.button-width_base{
    width: 325px;
    margin: auto;
}
h2{
    font-size: 25px;
    color: var(--color_main);
    text-align: center;
}
h3{
    font-size: 30px;
    letter-spacing: 4px;
}
.en{
    font-size: 13px;
    color: var(--color_main);
    font-family: var(--font_Montserrat);
    font-weight: bold;
}
.main-color{
    color: var(--color_main);
}
/* 全体アニメーション */
/* ふわっと */
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
        transform: translateY(30px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
.fadeLeft{
    animation-name:fadeLeftAnime;
    animation-delay: 0.2s;
    animation-duration:1.2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeLeftAnime{
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
    
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
.fadeRight{
    animation-name:fadeRightAnime;
    animation-delay: 0.8s;
    animation-duration:1.2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeRightAnime{
      from {
        opacity: 0;
        transform: translateX(50px);
      }
    
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    .fadeUpTrigger{
        opacity: 0;
        }

/*--------------------------------------------
ヘッダー
--------------------------------------------*/
header{
    height: 100px;
    width: calc(100% - var(--scrollbar-width, 0px));
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
}
header .logo-header{
    width: 200px;
}
header .menu-icon{
    height: 100px;
    cursor:pointer
}
/* 展開メニュー */
.header_menu{
    position: fixed;
    z-index: 100;
    right: 0;
    top: 0;
    background-color: var(--color_menu);
    width: 195px;
    height: 390px;
    color: #ffffff;
    padding-top: 50px;
    display: none;
    border-radius: 0 0 0 50px;
}
.header_menu div{
    position: absolute;
    top: 35px;
    left: 50%;
    width: 50px;
    height: 40px;
/*     background-color: #5A9637;
 */    transform: translateX(-50%);
    }
.header_menu div:hover{
        cursor:pointer
    }

.header_menu span{
        position: relative;

}
.header_menu span:before,
.header_menu span:after {
    content: '';
    display: block;
    top: 0;
    left: 50%;
    height: 2px;
    width: 50px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    top: 10px;
    left: 50%;
}
.header_menu span:before{
    transform: rotate(30deg);
}
.header_menu span:after {
    transform: rotate(-30deg);
}

#menu-btn-check:checked ~ .header_menu {
    display: block;
}
.header_menu ul{
    padding: 44px;
    font-size: 15px;
}
.header_menu ul a{
        color: #ffffff;
    }
.header_menu ul li{
        padding: 5px 0;
    }


#menu-btn-check {
    display: none;
}
@media  (max-width: 720px) {
    header{
        padding: 0 10px;
        position: static;
    }
    header .menu-icon{
        height: auto;
    }
    .header_menu div{
        top: 1.7em;
        left: 75%;
    }
    
    .menu{
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;

        width: 100px;
    }
    h3{
        font-size: 20px;
        letter-spacing: 0px;
    }
    
    }
/*--------------------------------------------
フッター
--------------------------------------------*/
footer{
    background-color: var(--color_bg__01);
    border-top: solid 10px ;
    border-image: linear-gradient(to right, #669933,#AAC064, #00A5B9) 1;
}
footer .container{
    display: flex;
    flex-wrap: wrap;
}
.footer01{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 40px;
}
.footer01 ul{
    display: flex;
    flex-wrap: wrap;
    max-width: 456px;
    margin: 0;
    padding: 0;
}
.footer01 ul li{
    width: 150px;
    font-weight: 600;

}
.footer01 ul li:hover{
    color: var(--color_main);
}
.footer01 ul li::before{
    display:inline-block; 
  vertical-align: middle;
  /*以下白丸つくる*/
  content:'';
  width:8px;
  height: 8px;
  background: var(--color_main);
  border-radius: 50%;
  margin-right: 12px;

}
.footer_button{
    margin: 0;
}
.footer02{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 50px 0 36px;
}
.footer02 img{
    width: 300px;
}
#page-top{
    width: 65px;
    position: fixed;
    right: 50px;
    bottom: -100px;
    z-index: 15;
    transition: all 0.5s;
  
}
#page-top.page-top_link {
    bottom: 38px;
    transition: all 0.5s;
  }
  
address{
    font-style: normal;
}
address span{
    color: var(--color_main);
    font-weight: bold;
    padding-right: 0.5em;
}
@media  (max-width: 1000px) {
    .footer01{
        justify-content: center;
        margin-top: 0;
    }
    .footer01 ul.pc_only{
        display: none;
    }
    footer .container{
        flex-direction: column-reverse;
    }
    .footer02{
        flex-wrap: wrap;
        gap: 2em;
        margin: 50px 0 36px;
    }
    .footer02 img{
        width: 248px;
    }
    .f-pc_only{
        display: none;
    }
}
@media  (max-width: 720px) {
    #page-top{
        width: 65px;
        position: static;
        display: block;
        margin: 2em auto;
        right: 0;
        bottom: 0;
        z-index: 15;
        transition: all 0.5s;
      
    }
    
    .pc_only{
        display: none;
    }
}

/*--------------------------------------------
メインビジュアル
--------------------------------------------*/
/* .top{
    margin-top: 120px;
}
 */.kv_head{
        position: fixed;
        animation: 1s ease-in-out fuwa;
        margin-top: 25vh;
        z-index: -10;
}
.fuwa_in{
    animation: 0.3s linear fuwa;
    animation-fill-mode: forwards;
}
.fuwa_out{
    animation:0.4s ease-out fuwa_out;
    animation-fill-mode: forwards;
}
.kv_copy{
    font-weight: bold;
    font-size: 50px;
    margin: 0 0 30px 0;
    letter-spacing: 3px;
}
@keyframes fuwa {
    0%{opacity: 0;}
    100%{opacity: 100;}
}
@keyframes fuwa_out {
    0%{opacity: 1;}
    100%{opacity: 0;}
}

.kv_egname{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin: 0;
}
.kv_copylong{
    padding: 150vh 0 0;
    font-size: 16px;
    line-height: 40px;
    color: var(--color_main);
    font-weight: bold;
}

.kv-fixed{
    position: fixed;
    height: 100vh;
    z-index: -10;
}
.scroll_area{
    position: fixed;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    height: 100vh;
    top: 0;
    padding: 0px 0px 40px 0px;
}
.scroll_area p{
    color: var(--color_main);
    writing-mode: vertical-rl;
    padding-bottom: 1em;
    font-weight: bold;
    font-size: 14px;
}
.scroll_solid{
	width: 2px;
	height: 50px;
	background: #B0C55F;
    overflow: hidden;
}
.inline{
	content: "";
    /*描画位置*/
	position: relative;
    display: block;
    /*線の形状*/
	width: 2px;
	height: 50px;
	background: var(--color_main);
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 4s linear infinite;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:-50px;
		opacity: 0;
	}
	50%{
		height:50px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}
.kv_button{
    width: 325px;
    margin-left: auto;
}
@media  (max-width: 1200px) {
    .kv_copy{
        font-size: 45px;
        margin: 0 0 20px 0;
        letter-spacing: 3px;
    }    
}
@media  (max-width: 720px) {
    .kv_head{
        position: static;
        animation: none;
        margin-top: 0;
        z-index: -10;

    }
    
    .kv_copy{
        font-weight: bold;
        font-size: 50px;
        margin: 0 0 30px 0;
        letter-spacing: 3px;
    }
    
    .kv_button{
        margin: 2em auto;
    }
    .kv_copy{
        font-size: 30px;
        margin: 0 0 15px 0;
    }
    .kv_egname{
        font-size: 12px;
    }
    .kv_copylong{
        padding: 3em 0 0;
        font-size: 16px;
        line-height: 40px;
        color: var(--color_main);
        font-weight: bold;
    }
        
}


/* オブジェ */
.ornament01{
    width: 180px;position: fixed;top:-50px;left: 50%;
}
.ornament02{
    width: 250px;position: fixed;top:20px;left: 55%;z-index: -10;
}
.ornament03{
    width: 500px;position: fixed;top:350px;left: 60%;
}
.ornament04{
    width: 100px;position: absolute;top:-42%;left: 50%;animation: 100s linear infinite kaiten3;
    ;
}
.ornament{
    animation: 140s linear infinite kaiten;
}
.ornament2{
    animation: 140s linear infinite kaiten2;
}
.ornament_rev{
    animation: 140s linear infinite kaiten_rev;
}
@keyframes kaiten {
    0%{transform: rotate(0);}
    100%{transform: rotate(360deg);}
}
@keyframes kaiten2 {
    0%{transform: rotate(-60deg);}
    100%{transform: rotate(300deg);}
}
@keyframes kaiten3 {
    0%{transform: translateX(-50%) rotate(0);}
    100%{transform: translateX(-50%) rotate(360deg);}
}
@keyframes kaiten_rev {
    0%{transform: rotate(0);}
    100%{transform: rotate(-360deg);}
}
@media  (max-width: 1200px) {
    .ornament03{
        width: 400px;position: fixed;top:250px;left: 60%;
    }
    }

@media  (max-width: 720px) {
    .top{
        margin: 0;
    }
    .top .container{
        padding-top: 3em;
        position: relative;
    }
    .ornament04{
        width: 60px;
    }
    .ornament01{
        width: 150px;
        top:130px;right: -5%;left: auto;
        position: absolute;
        z-index: -10;
    }
    .ornament02{
        width: 150px;
        top:20px;left: 20%;
        position: absolute;
        z-index: -100;
    }
    .ornament03{
        display: none;
    }
}    
/*--------------------------------------------
事業内容
--------------------------------------------*/
.section01{
    margin-top: 100px;
    text-align: center;
    background-image: url(../img/wave_bg.svg);
    background-size: cover;
}
.section01_wave{
    width: 100%;
    position: relative;
}
.section01_bg{
    width:100vw;position: absolute;top: 0;left: 0;z-index: -10;
}
.section01 h2{
    padding-top: 70px;
    
}
.section01_content01{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
}
.section01_content01 .ornament{
    width: 120px;
    position: absolute;
    left: -20%;
    bottom: -10%;
}
.section01_content01_title{
    font-size: 20px;
    font-weight: bold;
    margin: 16px 0 0px;
    width: fit-content;
    margin:10px auto;
    position: relative;
}
.section01_content01_title::after{
    content: '';
    background-image: url(../img/btn.png);
    background-size: cover;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 4px;
    right: -50px;
}
.section01_content01 .en{
    margin-top: 6px;
}
.section01_content01__01_area,.section01_content01__02_area{
    width: 380px;
    height: 325px;
    background-size: 150%;
    background-position: center;
    mask-image: url(../img/section01_content01__clip.svg);
    mask-size: cover;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.section01_content01__01_area{
    background-image: url(../img/service01.jpg);
}
.section01_content01__02_area{
    background-image: url(../img/service02.jpg);
}
.section01_content01__01:hover .section01_content01__01_area,.section01_content01__02:hover .section01_content01__02_area{
    background-size: 170%;
}
.section01_content01__01:hover .section01_content01_title::after,.section01_content01__02:hover .section01_content01_title::after{
    background-image: url(../img/btn_hover.png);
}

.section01_content02{
    background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/hause.png);
    mask-image: var(--color_menu);
    height: 400px;
    border-radius: 50px;
    margin-top: 90px;
    position: relative;
}
.section01_content02__flex{
    display: flex;
    justify-content: space-between;
    padding: 90px 100px 45px;
    color: #ffffff;
    text-align: left;
}
.section01_content02__flex-left p:first-child{
    font-size: 45px;
    font-weight: bold;
    margin: 0;
}
.section01_content02__flex-right{
    width: 352px;
    letter-spacing: 1.1px;
    line-height: 35px;
}
.section02{
    background-color: var(--color_bg__01);
    padding-top: 3em;
    position: relative;
}
.section02_inner{
    width: 300px;
    margin: auto;
    text-align: left;
}
.section02_inner p:nth-child(2){
    font-size: 35px;
    font-weight: bold;
}
.section02_inner p:nth-child(3){
    font-weight: 500;
    margin:3em auto 2em;
}
.section02_image01{
    position: absolute;
    left: 5%;
    top: 130px;
    max-width: 11%;
    width: 150px;
}
.section02_image02{
    position: absolute;
    left: 6%;
    top: 270px;
    width:23%;
}
.section02_image03{
    position: absolute;
    right: -70px;
    top: 60px;
    width:385px;
    max-width: 40%;
}
.section02_image04{
    position: absolute;
    left: 7%;
    top: 20px;
    width: 250px;
    max-width:20%;
}
.section02_image05{
    position: absolute;
    right: 15%;
    top: 300px;
    width:10%;
}

.section03{
    background-color: var(--color_bg__01);
    padding-top: 3em;

}
.section03_bg-clip{
    background-image: url(../img/product.jpg);
    background-size: cover;
    background-position: center;
    height: 574px;

    mask-image: url(../img/top_section03_clip.svg);
    mask-size: cover;
    mask-position: center 0;
}
.section03 .en{
    padding-top: 90px;
    padding-bottom: 35px;
}
.ginjomituimo_logo{
    width: 200px;
    margin: 0 auto 40px;
    display: block;
}
.section03 p:nth-child(3){
    max-width: 266px;
    font-size: 16px;
    color: #ffffff;
    margin:0 auto 2em;
    text-shadow: 1px 1px 3px black;
}
@media (max-width: 1100px) {
    .section01_content01{
        justify-content: center;
        gap: 2em;
    }
    .section01_content01 .ornament{
            display: none;
        }
    
    .section01_content01_title{
        margin: 10px auto 0;
    }
    .section01_content02__flex{
        padding: 40px 100px 0px;

    }

}
@media  (max-width: 720px) {
    .section01{
        background-image: url(../img/wave_bg_sp.svg);
    }
    .section01 h2{
        padding-top: 30px;
        margin: 0;
    }    
    .section01_content01__01 img ,.section01_content01__02 img{
        max-width: 100%;
        min-height: auto;
        mask-image: url(../img/section01_content01__clip.svg);
        mask-size: auto;
        mask-repeat: no-repeat;
        mask-position: center;
        }
    .section01_content02{
        background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/hause.png);
        background-size: cover;
        background-position: center;
        mask-image: var(--color_menu);
        height: 350px;
        border-radius: 50px;
        margin-top: 50px;
    }
    .section01_content02 .button-width_base{
    }
    .section01_content02 .link_button01{
        display: none;
    }
    .link_button02{
        width: 50px;
        height: 50px;
        background-image: url(../img/btn.png);
        background-repeat: no-repeat;
        display: block;
        position: absolute;
        bottom: 20px;
        right: 20px;
    }
    .section01_content02__flex{
        display: block;
        padding: 50px 30px 45px;
        }
        .section01_content02__flex .en{
            margin: 5px auto 2em;
        }
    .section01_content02__flex-left p:first-child{
        font-size: 30px;
        font-weight: bold;
        margin: 0;
    }
    .section01_content02__flex-right{
        font-size: 13px;
        line-height: 25px;
        max-width: 100%;
    }
    .section02{
        padding-top: 500px;
    }
        .section02_image01{
            left: 5%;
            top: 130px;
            width: 100px;
            max-width: 100%;
        }
        .section02_image02{
            position: absolute;
            left: 6%;
            top: 290px;
            width:200px;
        }
        .section02_image03{
            position: absolute;
            right: -100px;
            top: 50px;
            width:300px;
            max-width: 100%;

        }
        .section02_image04{
            position: absolute;
            left: 2%;
            top: 60px;
            width:150px;
            max-width: 100%;

        }
        .section02_image05{
            position: absolute;
            right: 10%;
            top: 280px;
            width:80px;
            max-width: 100%;
        }
        .section02_inner p:nth-child(2){
            margin: 25px auto;
            font-size: 30px;
        } 
        .section02_inner p:nth-child(3){
            margin: 25px auto;
        } 
    .section03_bg-clip{
        mask-image: url(../img/top_section03_clip_sp.svg);
        height: 470px;
    }
    .section03 .en{
        padding-top: 50px;
    padding-bottom: 20px;
    margin: 0;
    }
    .section03 p:nth-child(3){
        margin: 0 auto 1em;
    }
    }



/* 下層 */
.mv{
    margin-top: 130px;
}
.mv .container{
    position: relative;
    border-radius: 50px;
    height: 350px;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    z-index: -10;
}
.company  .mv .container{
    background-image:url(../img/company_mv.jpg);
}
.product .mv .container{
    background-image:url(../img/product_mv02.jpg);
}
.service .mv .container{
    background-image:url(../img/service_mv.jpg);
    background-position: 0 60%;
}
.professional .mv .container{
    background-image:url(../img/professional_mv.jpg);
}
.produce .mv .container{
    background-image:url(../img/produce_mv.jpg);
}
.contact .mv .container{
    background-image:url(../img/contact_mv.jpg);
}

.mv_clip{
    width: 50%;
    max-width: 500px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.lower section{
    margin: 100px 0;
}
.lower h2{
    margin-top: -50px;
    margin-bottom: 10px;
}
.lower .mv .en{
    text-align: center;
}
.text-green{
    color: var(--color_main);
}
.line-height_nomal{
    line-height: 35px;;
}
.line-height_big{
    line-height: 40px;;
}
/* 左寄り背景 */
.left_side_bg{
    background-image: url(../img/gap_bg_top.svg),url(../img/gap_bg_bottom.svg),url(../img/gap_bg_body.svg);
    background-position: -100px 0, -100px bottom,-100px 0;
    background-repeat: no-repeat,no-repeat,repeat-y;

    padding: 90px 0;
}
.right_side_bg{
    background-image: url(../img/gap_bg_top.svg),url(../img/gap_bg_bottom.svg),url(../img/gap_bg_body.svg);
    background-position: -100px 0, -100px bottom,-100px 0;
    background-repeat: no-repeat,no-repeat,repeat-y;

    padding: 90px 0;
    transform: scale(-1, 1);
}
.right_side_bg .container{
    transform: scale(-1, 1);
}
section .container{
    position: relative;
}
@media  (max-width: 1000px) {
    .lower h2{
        margin-top: 20px;
    }

}
@media  (max-width: 720px) {
    .mv{
        margin: 0;
    }
    .mv .container{
        height: 200px;
        border-radius: 30px
    }
    .lower section{
        margin: 50px 0;
    }    
    .line-height_nomal{
        line-height: 24px;;
    }
    .line-height_big{
        line-height: 40px;;
    }

}

/*--------------------------------------------
COMPANYページ
--------------------------------------------*/
.company_info , .company_history{
    margin-top: 80px;
}
.company_info li{
    display: flex;
    border-bottom:1px solid  #CCCCCC;
}
.company_info li:last-child{
    border-bottom:none;
}
.company_info li p:first-child{
    margin-left: 50px;
}
.company_info li p:first-child{
    width: 200px;
}
.company_section02_body01{
    padding: 50px 0;
    margin: 0;
    border-bottom: 1px solid #CCCCCC;
}
.company_section02_body02{
    padding-top: 50px;
    margin: 0;
}
.company_history_image{
    width: 320px;
    position: absolute;
    top: 110px;
    right: -7%;
}

.company_history li{
    display: flex;
    border-bottom:1px solid  #CCCCCC;
}
.company_history li p{
    margin-left: 50px;
}
.company_history li p:first-child{
    width: 116px;
}

.company_section04{
    overflow: hidden;
}
.map{
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}
.map div{
    width: 50%;
}
.map div .map_adress01{
    display: flex;
    gap: 2em;
    width: fit-content;
    margin-left: auto;
}
.map div .map_adress02{
    display: flex;
    gap: 2em;
    width: fit-content;
    margin-right: auto;
}
@media  (max-width:1200px) {
    .left_side_bg,.right_side_bg{
        background-position: right 0, right bottom,0px 0;
        padding: 46px 0;
        background-size: 1500px;
    }
    .company_history_image{
        width: 300px;
        position: static;
        margin: auto;
        display: block;
    }
    .company_history{
        margin-top: 0;
    }


}

@media  (max-width: 720px) {
    .company_info{
        margin-top: 0;
    }
    .company_info li p:first-child{
        width: 64px;
    }
    .company_info li p:first-child{
        margin-left: 20px;
    }
    .company_section02_body01{
        padding: 1em 0;
        margin: 0;
        border-bottom: 1px solid #CCCCCC;
    }
    .company_section02_body02{
        padding-top: 1em;
        margin: 0;
    }
    .company_history li p{
        margin-left: 20px;
    }
    .company_history li p:first-child{
        width: 56px;
    }
    .map{
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .map div{
        width: 300px;

    }
    .map div .map_adress01{
        display: flex;
        gap: 2em;
        width: fit-content;
        margin-left: auto;
    }
    .map div .map_adress02{
        display: flex;
        gap: 2em;
        width: fit-content;
        margin-right: auto;
    }
}
/*--------------------------------------------
SERVICEページ
--------------------------------------------*/
.service .en{
    margin: 0;
}
.service h3{
    margin: 0;
}
.service_section01_subtitle{
    font-size: 14px;
}
.service_copy{
    font-size: 25px;
    font-weight: bold;
}
.service_section01 h4{
    font-size: 20px;
    font-weight: bold;
}
.service_section01_button-area{
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 1.5em;
}

section.service_section02{
    background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/service_section02_bg.jpg);
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #ffffff;
    margin-bottom: 0;
    background-size: cover;
}
.service_section02_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em;
    margin-bottom: 100px;
}
.service_section02_flex img{
    width: 200px;
}
@media  (max-width: 720px) {
    .service_copy{
        font-size: 18px;
    }
    .service_section02_flex{
        margin-bottom: 3em;
    }
    section.service_section02{
        padding: 50px 0;
    }
}
/*--------------------------------------------
PROFESSIONALページ
--------------------------------------------*/
.professional_section01{
    position: relative;
}

.professional .en{
    margin: 0;
}
.professional h3{
    margin: 0;
}

.professional_copy{
    font-weight: bold;
    font-size: 20px;
    line-height: 40px;
}
.text-mark{
    background-color: var(--color_main);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 5px;
}
.professional_point02_text01{
    padding: 2em 0;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 2em;
}
.professional_point01_text01{
    padding: 2em 0;
    max-width: 486px;
    position: relative;
}
.professional_point01_image{
    width: 320px;
    position: absolute;
    top: 0;
    right: 0;
}
.professional_point03_text01{
    padding: 2em 0 0;
}
.professional h4{
    margin: 0;
    padding-top: 2em;
    border-top: 1px solid #CCCCCC;

}
.professional_point01_text02{
    margin: 0.5em 0;
    padding-bottom: 2em;
    border-bottom: 1px solid #CCCCCC;
}
.professional_section02 .biostimulant{
    width: 284px;
    margin:3em auto 0;
    display: block;
}
.professional_section03_button-area{
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 1.5em;
}
@media (max-width: 1100px)  {
    .professional_point01_image{
        position: static;
        margin:1em auto;
        display: block
    }
    .professional_point01_text01{
        max-width: 100%;
    }
    .professional_point03_text01{
        padding: 0 ;
    }
    
}
/*--------------------------------------------
PRODUCEページ
--------------------------------------------*/
.produce section{
    position: relative;
    margin: 200px 0;
}
.produce h3{
    margin:60px auto 0;
}
.produce .produce_section02{
    margin-top: -100px;
}
.produce .produce_section01 .container::after{
    content: '';
    width: 450px;
    height: 385px;
    position: absolute;
    top: -220px;
    right: 0;
    background-image: url(../img/produce_section01_bg.jpg);
    background-size: cover;
    mask-image: url(../img/section01_content01__clip.svg);
    mask-size: cover;
}
.produce .produce_section03 .container::after{
    content: '';
    width: 450px;
    height: 385px;
    position: absolute;
    top: -220px;
    right: 0;
    background-image: url(../img/produce_section03_bg.jpg);
    background-size: cover;
    background-position: center;
    mask-image: url(../img/section01_content01__clip.svg);
    mask-size: cover;
}
.produce .produce_section04 .container::after{
    content: '';
    width: 450px;
    height: 385px;
    position: absolute;
    top: -220px;
    right: 0;
    background-image: url(../img/produce_section04_bg.jpg);
    background-size: cover;

    mask-image: url(../img/section01_content01__clip.svg);
    mask-size: cover;
}
.produce .produce_section05 .container::after{
    content: '';
    width: 450px;
    height: 385px;
    position: absolute;
    top: -220px;
    right: 0;
    background-image: url(../img/produce_section05_bg.jpg);
    background-size: cover;

    mask-image: url(../img/section01_content01__clip.svg);
    mask-size: cover;
}
.produce_items_body{
    margin-top: 120px;
}
.produce h4{
    margin: 0 auto 0.5em;
}
.produce_point01_text02{
    margin: 0.5em auto 2em;
}
.sibe-nav{
    position: sticky;
    left: 5%;
    top: 30%;
    width: fit-content;
    height: 0;
    margin-top: 140px;
    margin-bottom: -140px;
    z-index: 10;
}
.sibe-nav ul li{
    margin: 0.5em;
}
.sibe-nav ul li:hover a{
    color: var(--color_main)!important;
}
.sibe-nav ul li::before{
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color_main);
    border-radius: 50%;
    margin-right: 16px;
    padding-bottom: 3px;
    margin-bottom: 3px;
}
.produce_sweetpotato_text01{
    margin-top: 120px;
}
.produce_sweetpotato_cycle{
    display: flex;
    flex-wrap: wrap;
}
.produce_sweetpotato_cycle img{
    width: 120px;
}
.produce_sweetpotato_cycle p{
    margin: 5px 0;
    padding-left: 2em;
}
.produce_section02 h4{
    font-size: 25px;
}
.produce_section02_flex01{
    display: flex;
    column-gap: 77px;
}
    .produce_section02_flex01 .flex01_left{
            width: 220px;
            text-align: center;
        }
    .produce_section02_flex01 .flex01_left img{
        width: 220px;
    }
    .produce_section02_flex01 .flex01_left img:first-child{
        width:150px;
        margin-bottom: 2em;
    }

.produce_section02_flex02{
    display: flex;
    column-gap: 48px;
    margin-top: 100px;
}
.produce_section02_flex02 a{
        color: #ffffff;
    }
    .produce_section02_flex02 .flex02_left{
        width: 325px;
        height: 350px;
        padding: 50px;
        background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url(../img/produce_bosyubg.jpg);
        background-size: cover;
        background-position: center;
        border-radius: 50px;
        position: relative;
    }
    .produce_section02_flex02 .flex02_right{
        width: 325px;
        height: 350px;
        padding: 50px;
        background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url(../img/produce_sweet_bg.jpg);
        background-size: cover;
        background-position: center;
        border-radius: 50px;
        position: relative;
    }
    .produce_section02_flex02 .flex02_left::after,.flex02_right::after{
        content: '';
        background-image: url(../img/btn.png);
        background-size: cover;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 80%;
        right: 10%;
    }
    .produce_section02_flex02 .flex02_head{
        font-size: 30px;
        line-height: 45px;
        margin: 0;
        height: 135px;
    }
    .produce_section02_flex02 .flex02_body{
        font-size: 15px;
        line-height: 25px;
    }

@media  (max-width: 1000px) {
    .sibe-nav{
        position: static;
        width: fit-content;
        margin-top: 1em;
        margin-bottom: 0;
    }
    .sibe-nav ul{
        display: flex;
        flex-wrap: wrap;
        row-gap: 0.6em;
        width: 300px;
        margin-left: 1.5em;
        margin-top: 3em;
    }
    .sibe-nav ul li{
        width: 130px;
        margin: 0;
    }

    .produce .left_side_bg,.produce .right_side_bg{
        padding-top: 150px;
    }
    .produce .produce_section02{
        margin-top: -2em;
    }
    .produce h3{
        margin:40px auto 0;
    }
    
    .produce_items_body{
        margin-top: 2em;
    }
    
    .produce_section02_flex01{
        display: block;
    }
    .produce_section02_flex01 .flex01_left{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2em;
            width: 100%;
        }
        .produce_section02_flex01 .flex01_left img{
            width: 150px;
        }
        .produce_section02_flex01 .flex01_left img:first-child{
            width:100px;
            margin-bottom: 2em;
        }
    .produce_section02_flex02{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 30px;
    }
    .produce .produce_section01 .container::after{
        width: 300px;
        height: 257px;
        left: 50%;
        transform: translate(-50%, 0);
        top: -280px;    }
    .produce .produce_section03 .container::after{
        width: 300px;
        height: 257px;
        left: 50%;
        transform: translate(-50%, 0);
        top: -280px;    }
    .produce .produce_section04 .container::after{
        width: 300px;
        height: 257px;
        left: 50%;
        transform: translate(-50%, 0);
        top: -280px;    }
    .produce .produce_section05 .container::after{
        width: 300px;
        height: 257px;
        left: 50%;
        transform: translate(-50%, 0);
        top: -280px;    }
}
@media  (max-width: 720px) {
    .produce_sweetpotato_cycle p{
        margin: 5px 0 1em;
        padding-left: 0;
        width: 100%;
    }
    .produce section{
        position: relative;
        margin: 200px 0 100px;
    }
    
}
/*--------------------------------------------
PRODUCTページ
--------------------------------------------*/
.product h4{
    font-size: 20px;
    margin: 0;
}
/* .product_section01_sticky{
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url(../img/product_image.jpg);
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 0;
    z-index: -10;
}
 .product_section01_sticky img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 250px;
}*/
.product_section01_body{
    padding-top: 100vh;
    padding-bottom: 40vh;
    line-height: 36px;
    color: #ffffff;
    text-shadow: 1px 1px 3px black;
    max-width: 1000px;
    width: 90%;
    margin: auto;
}
.product_section02_flex{
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto 24px;
}
.product_section02_flex p{
        width: 450px;
    }
    .product_section02_flex img{
        display: block;
        width: 120px;
        height: 202px;
        margin: auto;
    }
.paddng-b90{
    padding-bottom: 90px;
    border-bottom: solid 1px #CCCCCC;
}
/* swiper */
.swiper{
    margin-top:3em ;
}
.gallery01{
    background-image: url(../img/gallery01.jpg);
}
.gallery02{
    background-image: url(../img/gallery02.jpg);
}
.gallery03{
    background-image: url(../img/gallery03.jpg);
}
.gallery04{
    background-image: url(../img/gallery04.jpg);
}
.gallery05{
    background-image: url(../img/gallery05.jpg);
}
.gallery06{
    background-image: url(../img/gallery06.jpg);
}
.gallery07{
    background-image: url(../img/gallery07.jpg);
}
.gallery08{
    background-image: url(../img/gallery08.jpg);
}
.gallery09{
    background-image: url(../img/gallery09.jpg);
}
.gallery10{
    background-image: url(../img/gallery10.jpg);
}
.gallery11{
    background-image: url(../img/gallery11.jpg);
}

.product_section03 .swiper{
    overflow: visible;
    width: 642px;
  height: 450px;
  position: relative;
}
.product_section03{
    overflow: hidden;
}
.swiper-item{
    max-width: 642px;
    height: 450px;
    border-radius: 50px;
    background-size: cover;
}
.product_section03 .swiper-button-prev,.product_section03 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
  }
.product_section03 .swiper-button-prev {
    left: -7em;
    width: 65px;
    height: 65px;
  }
.product_section03 .swiper-button-next {
    right: -7em;
    width: 65px;
    height: 65px;
  }
.product .swiper-button-next:after,.product .swiper-button-prev:after{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
}
.product .swiper-button-next:after{
    background-image: url(../img/swiper-button-next.svg);
}
.product .swiper-button-prev:after{
    background-image: url(../img/swiper-button-prev.svg);
}
.product_section04 .line-up_p30{
    text-align: center;
    font-size: 30px;
    font-family: "ten-mincho", serif;
    font-weight: 400;
    font-style: normal;
    margin: 1em 0 0;
}
.product_section04 .line-up_p15{
    text-align: center;
    color: var(--color_main);
    font-size: 15px;
    margin: 0.5em 0 46px;
}
.product_section04 .line-up_p13{
    font-size: 13px;
    text-align: center;
    padding-top: 46px
}
.productType{
    border-bottom: 1px solid #CCCCCC;
    margin: 0 auto 60px;
}
.rakutenLink{
    padding: 46px 0 60px;

}
.line-up_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
}
.line-up_item_img{
    max-width: 210px;
    min-height: 180px;
    mask-image: url(../img/section01_content01__clip.svg);
    mask-size: cover;
}
.line-up_item{
    text-align: center;
}
.line-up_item .item-name{
   font-size: 18px;
   line-height: 21px;
   margin: 1em 0 0;
   font-weight: bold;
}
.line-up_item .internal-capacity{
    font-size: 15px;
    font-weight: bold;
    margin: 1em 0;
}
.item_logo {
    width: auto;
}
@media (max-width: 1100px) {
    .line-up_items{
        flex-wrap: wrap;
        justify-content: center;
        gap: 3em;
      }

}
@media  (max-width: 720px) {
    .swiper{
        margin-top:2em ;
    }
    .product_section01_body{
        padding-bottom: 200px;
        line-height: 36px;
        color: #ffffff;
        text-shadow: 1px 1px 3px black;
    }
    
    .product_section01_body img{
        width: 220px;
        display: block;
        margin:0 auto 40px;
        
    }
    .paddng-b90{
        padding-bottom: 40px;
    }
    .product_section02_flex p{
            width: 100%;
        }
    .product_section02_flex img{
        width: 100px;
        height: 169px;
    }
    
    
    .product_section03 .swiper{
        overflow: visible;
        width: 300px;
        height: 210px;
        position: relative;
    }
    
    .swiper-item{
        max-width: 300px;
        height: 210px;
        border-radius: 23px;
        background-size: cover;
    }
    .product_section03 .swiper-button-prev {
        left: -1em;
        width: 45px;
        height: 45px;
    
      }
    .product_section03 .swiper-button-next {
        right: -1em;
        width: 45px;
        height: 45px;
      }
      .product_section04 .line-up_p30{
        font-size: 20px;
        margin: 1em 0 0;
    }
      .product_section04 .line-up_p15{
        font-size: 12px;
        margin: 0.5em 0 20px;
    }
    .line-up_item .item-name{
        font-size: 16px;
        line-height: 21px;
        margin: 1em 0 0;
        font-weight: bold;
     }
     .line-up_item .internal-capacity{
         font-size: 14px;
         font-weight: bold;
         margin: 0.5em 0 1em;
     }
     .item_logo {
        width: 94px;
    }
    
}
/*--------------------------------------------
CONTACTページ
--------------------------------------------*/
.contact .left_side_bg{
    font-weight: bold;
}
.contact_head{
    margin: 80px 0 -3em;
    font-size: 15px;
}
.contact h3{
    color: var(--color_main);
    font-size: 22px;
    letter-spacing: normal;
}
.contact h3::before{
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color_main);
    border-radius: 50%;
    margin-right: 8px;
    padding-bottom: 3px;
    margin-bottom: 3px;
}
.contact_flex{
    display: flex;
    flex-wrap: wrap;
    column-gap: 3em;
}
.contact-radio{
    padding-bottom: 1em;
    display: block;
}
textarea{
    border: none;
    width: 100%;
    height: 100px;
    border-radius: 5px;
    padding: 0.5em;
    margin-top: 1em;
}
input[type=radio]{
    margin-right: 6px;
}
input[type=text],input[type=tel],textarea{
    font-size: 16px;
}
input[type=text],input[type=tel]{
    border: none;
    border-radius: 5px;
    height: 1em;

    width: 300px;
    height: 50px;
    padding: 0.5em;
}
.input_width500{
    width: 460px!important;
}
input[type=submit]{
    width: 100%;
    height: 100%;
}
.contact_section02 .form-item{
	border-bottom: 1px solid #CCCCCC;
    align-items: center;
    height: 100px;
}

.form-item p{
    width: 190px;
    margin: 0;
    line-height: 25px;
}
.form-item01{
    margin-top: 60px;
}
.form-item02{
    margin-top: 60px;
}
.form-item03{
    margin-top: 50px;
    margin-bottom: 24px;
}
.contact .contact_section02{
    margin-bottom: 3em;
}
.u_submit{
    margin: 3em auto 6em;
}
@media  (max-width: 720px) {
    .contact_head{
        margin: 3em 0;
    }
    
    .contact_flex{
        display: block;
    }
    
    .form-item01 div:nth-child(2){
        margin-left: 3em;
        margin-top: 1em;
    }
    .form-item01,.form-item02,.form-item03{
        margin-top: 2em;
    }
    input[type=file]{
        margin-top: 1.5em;
    }
    input[type=text], input[type=tel],.input_width500{
        width: 100%!important;
    }
    .form-item p{
        margin-bottom: 0.5em;
        padding-top: 1em;
    }
    .contact_section02 .form-item{
        height: 120px;
    }
}

@media  (max-width: 720px) {
    .pc_only{
        display: none;
    }
}
/*--------------------------------------------
商品
--------------------------------------------*/
#product_kv {
    border-radius: 50px;
    background-image: url(../img/product.jpg);
    width: 1000px;
    height: 350px;
    max-width: 100%;
    max-height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: fixed;
    top: 100px;
  }
#product_kv h2{
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 110%;
}
#product_kv .en{
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 90%;

}
  .position_js{
        right: 50%;
    transform: translateX(50%);
  }
  .postion_stiky{
    position: sticky!important;
    right: 0;
  }

  .product_ginjomituimo_logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    opacity: 0;
    transition: cubic-bezier(0.23, 1, 0.320, 1);

  }
  .add_ginjomituimo_logo{
       animation-name:fadefuwaAnime;
       animation-duration:0.5s;
       animation-fill-mode:forwards;
   
}    @keyframes fadefuwaAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  .remove_ginjomituimo_logo{
       animation-name:fadeOutAnime;
       animation-duration:0.5s;
       animation-fill-mode:forwards;
   
}    @keyframes fadeOutAnime{
    from {
      opacity: initial;
    }
  
    to {
      opacity: 0;
    }
  }
  @media  (max-width: 1100px) {
    #product_kv {
        width: 90%;
        border-radius: 30px;
      }
    }    
  @media  (max-width: 720px) {
    #product_kv {
        border-radius: 30px;
        width: 90%;
        height: 200px;
        border-radius: 30px;
      }
    }    
