@charset "utf-8";

@import "reset.css";
/* @import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap'); */

*{
    box-sizing:border-box;
}
html,
body{
    font-size:62.5%;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", "Sawarabi Mincho", serif;
    font-feature-settings:"palt";
    color:#333333;
    text-align:justify;
}
body{
    font-size:1.6rem;
    line-height:2;
    background:url(/common/img/bg_common.png);
}
img{
    width:100%;
    height:auto;
}
.wf-hannari {
    font-family: "Hannari";
}
.vertical {
    writing-mode: vertical-rl;
    font-feature-settings: normal;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
header{
    position: fixed;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    z-index: 999;
    width: 100%;
    transition:0.3s;
    top: 0;
}
header.white{
    background: #fff;
    box-shadow:0 3px 5px 0 rgba(0,0,0,0.1);
}
.header_logo{
    width:50px;
    margin:20px;
    display: inline-block;
}
.gnav{
    display: inline-block;
    margin-right: 3rem;
}
.box{
    width:1000px;
    margin-left:auto;
    margin-right:auto;
}
.box_s{
    width:800px;
    margin-left:auto;
    margin-right:auto;
}
h2{
    font-size:3.2rem;
    color:#000;
    position:relative;
    font-weight: normal;
    letter-spacing: 0.5rem;
	margin-bottom:10rem;
    text-align: center;
}
h2:before{
    content:"";
    display: inline-block;
    position:absolute;
    background:#90B721;
    width:30px;
    height:3px;
    bottom:calc(-3rem - -5px);
    left: 50%;
    transform: translateX(-50%);
}
h2:after{
    content:"";
    display: inline-block;
    position:absolute;
    background:#90B721;
    width:30px;
    height:2px;
    bottom:-3rem;
    left: 50%;
    transform: translateX(-50%);
}
h3{
    font-size: 2.4rem;
    text-align: center;
    padding: 5rem 0;
    vertical-align: middle;
	position: relative;
    letter-spacing: 1rem;
    font-weight:normal;
}
h3:after{
    content: "";
    background: url(../../../common/img/img_jimon_c.png) no-repeat;
    background-size: contain;
    height: 62px;
    width: 56px;
    background-position: center;
    display: inline-block;
    opacity: 0.3;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.top_image{
	margin-bottom:10rem;
}
.more{
    border:1px solid #333;
    padding:1rem 10rem;
    display: inline-block;
    color:#333;
    position:relative;
    transition:0.3s;
}
.more:after{
    content:"";
    display: inline-block;
    background:url(../../common/img/img_arrow_k.svg);
    width:22px;
    height:4px;
    position:absolute;
    right:1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition:0.3s;
}
.more:hover{
    background:#90B721;
    border-color:#90B721;
}
.more:hover:after{
    right:0.75rem;
}
.more_wrap{
    margin-top:10rem;
    text-align:center;
}
.pc{
    display: initial;
}
.sp{
    display: none;
}

@media screen and (max-width:799px) {
    /*SP-Tablet*/
    .box{
        width:94%;
    }
    .box_s{
        width:90%;
    }
}
@media screen and (max-width:479px) {
    /*SP*/
    header{
        position: fixed;
        justify-content: space-between;
        align-items: center;
        height: 65px;
        z-index: 999;
        width: 100%;
        transition:0.3s;
    }
    .header_logo{
        width:40px;
        margin:10px;
        display: inline-block;
        z-index: 100;
    }
    .box{
        width:100%;
    }
    .box_s{
        width:90%;
    }
    .more_wrap{
        margin-top:5rem;
        margin-bottom: 10rem;
    }
    .pc{
        display: none;
    }
    .sp{
        display: initial;
    }
    .more{
        padding:1rem 0;
        width: 90%;
    }
}

/*--------------------------------------------
    Fade
--------------------------------------------*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}
.fadein.effect-scroll {
    opacity : 1;
    transform: translateY(0);
    transition: all 1s;
}
.fadein_left {
    opacity : 0;
    transform: translateX(-20px);
    transition: all 1s;
}
.fadein_left.effect-scroll {
    opacity : 1;
    transform: translateX(0);
    transition: all 1s;
}
.fadein_right {
    opacity : 0;
    transform: translateX(20px);
    transition: all 1s;
}
.fadein_right.effect-scroll {
    opacity : 1;
    transform: translateX(0);
    transition: all 1s;
}
.fade {
    opacity : 0;
    filter: blur(10px);
    transition: all 1s;
}
.fade.effect-scroll {
    opacity : 1;
    filter: blur(0);
}
.open_right{
    width:50%;
    opacity:0;
}

/*--------------------------------------------
    画面遷移　https://digipress.info/tech/page-transition-effect-how-to/
--------------------------------------------*/

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#fff;  /* 背景カラー */
    z-index: 9999;  /* 一番手前に */
    pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
    opacity: 0;  /* 初期値 : 透過状態 */
    -webkit-transition: opacity .8s ease;  /* アニメーション時間は 0.8秒 */
    transition: opacity .8s ease;
}
body.fadeout::after {
    opacity: 1;
}
/* body.fadeout section{
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
} */

/*--------------------------------------------
    Menu
--------------------------------------------*/

@media screen and (max-width:799px) {
    /*SP-Tablet*/
    .menu{
        height: 20px;
        position: absolute;
        right: 20px;
        top: 40px;
        width: 30px;
        z-index: 99;
    }
    .menu__line{
        background: #fff;
        display: block;
        height: 2px;
        position: absolute;
        transition:transform .3s;
        width: 100%;
    }
    .white .menu__line{
        background: #333;
    }
    .menu__line--center{
        top: 9px;
    }
    .menu__line--bottom{
        bottom: 0;
    }
    .menu__line--top.active{
        background: #333;
        top: 8px;
        transform: rotate(45deg);
    }
    .menu__line--center.active{
        background: #333;
        transform:scaleX(0);
    }
    .menu__line--bottom.active{
        background: #333;
        bottom: 10px;
        transform: rotate(135deg);
    }
}
@media screen and (max-width:479px) {
    .menu{
        top: 20px;
    }
}
/*--------------------------------------------
    Gnav
--------------------------------------------*/
@media screen and (min-width:800px) {
  /*PC*/
    .gnav__menu__item{
        height:100%;
        margin:0 1.5rem
    }
    .gnav__menu__item a{
        font-size:1.6rem;
        margin:0 1.5rem;
        letter-spacing: 0.1rem;
        color:#fff;
        transition:0.3s;
        position:relative;
        text-shadow: 0 0 10px rgba(0,0,0,1);
        padding-top:2rem;
    }
    .gnav__menu__item a:hover{
        color:#90B721 !important;
        text-decoration:none;
    }
    .white .gnav__menu__item a{
        color:#333;
        text-shadow: none;
    }
}
@media screen and (max-width:799px) {
    /*SP-Tablet*/
    .gnav{
        background: rgba(255,255,255,1.0);
        display: none;
        height: 100%;
        position: fixed;
        width: 100%;
        z-index: 98;
        top:0;
    }
    .gnav.vertical{
        writing-mode: initial;
    }
    .gnav__wrap{
        align-items:center;
        display: flex;
        height: 100%;
        justify-content: center;
        position: absolute;
        width: 100%;
    }
    .gnav__menu{
        margin-top: 4rem;
    }
    .gnav__menu__item{
        /* margin: 1.5rem 0.5rem; */
        width:80%;
        text-align: center;
        /* height: 100%; */
        margin-left: 10%;
    }
    .gnav__menu__item a{
        color: #333;
        font-size: 1em;
        /* padding: 40px; */
        text-decoration: none;
        transition: .5s;
        width: 100%;
        display: inline-block;
        padding: 1rem;
        border-bottom: 1px solid #ccc
    }
    .gnav__menu__item:first-child a{
        border-top: 1px solid #ccc
    }
    .gnav__menu__item a:hover{
        color: #666;
    }
}

/*--------------------------------------------
    Main
--------------------------------------------*/

#main .main_wrap{
    height: calc(100vh - 95px);
    margin-top: 95px;
}
#main .main_box{
    z-index: 1;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}
h1{
    z-index: 1;
	padding-bottom: 5rem;
}
h1{
	width: 10%;
    margin-left: 83%;
    margin-right: 7%;
}
h1{
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: both;
	animation-name: fade;
}
@keyframes fade {
	0% {filter: blur(10px);}
	100% {filter: blur(0);}
}
#main h1 img{
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.8));
}
#main .index{
    /* padding: 5rem 0 0 0; */
    margin-right: 7%;
}
#main .index ul{
    justify-content: center;
    width: 100%;
}
#main .index li{
    width: 100%;
    color: #fff;
    text-align: right;
    margin: 1rem 0;
}
#main .index li a{
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.8));
    text-align: right;
    display: inline-block;
    color: #fff;
    position:relative;
    font-size:2rem;
}
#main .index li a::after{
    content: ">";
    font-weight: bold;
    font-size: 0.6rem;
    margin-right: 2rem;
    vertical-align: middle;
    transition: 0.3s;
    transform: translateX(2rem);
    display: inline-block;
}
#main .index li a:hover::after{
    transform:translateX(2.5rem);
}
/* #main .index li a::before{
    content:"";
    width:0%;
    height:0.1px;
    background:#fff;
    display: inline-block;
    transition:0.3s;
    position:absolute;
    bottom:0;
} */
/* #main .left .index li a::before{
    left:0;
}
#main .right .index li a::before{
    right:0;
}
#main .index li a:hover::before{
    width:100%;
} */
#main .index li:nth-child(1){
    animation-name: first;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-delay:1s;
    animation-fill-mode:both;
}
#main .index li:nth-child(2){
    animation-name: first;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-delay:1.25s;
    animation-fill-mode:both;
}
#main .index li:nth-child(3){
    animation-name: first;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-delay:1.5s;
    animation-fill-mode:both;
}
#main .index li:nth-child(4){
    animation-name: first;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-delay:1.75s;
    animation-fill-mode:both;
}
#main .index li:nth-child(5){
    animation-name: first;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-delay:2s;
    animation-fill-mode:both;
}
#main .index li:nth-child(6){
    animation-name: first;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-delay:2.25s;
    animation-fill-mode:both;
}
@keyframes first {
    0% {
      transform: translateX(-10px);
      opacity:0;
    }
    100% {
        transform: translateX(0);
        opacity:1;
    }
}
#main #title {
    min-width: 100%;
}

#main .index li:last-child{
    /* border-right:1px solid #9a9a9a; */
} 

@media screen and (max-width:799px) {
    /*SP-Tablet*/
}
@media screen and (max-width:479px) {
    /*SP*/
    #main .main_wrap {
        margin-top: 65px;
        height: calc(100vh - 65px);
    }
	#main .gradient{
		position: absolute;
		mix-blend-mode: multiply;
		width: calc(100% - 4rem);
		width: 100%;
		margin-top: 0;
		height: calc(100vh - 65px);
		box-sizing: border-box;
		margin-left: 0;
	}
	h1{
		margin-left: auto !important;
		margin-right: auto !important;
		z-index: 1;
		padding-bottom: 5rem;
        /* border-bottom: solid 1px #fff; */
        display: flex;
        justify-content: center;
	}
    #main .index{
        padding: 5rem 0 0 0;
        margin-right: 0%;
    }
    #main .index li {
        text-align: center;
    }
    #main .main_box {
        z-index: 1;
        text-align: center;
        top: 50%;
        position: relative;
        transform: translateY(-50%);
    }
}


/*--------------------------------------------
    Banner
--------------------------------------------*/
#bnr{
    background:#fafafa;
    padding:8rem 0;
    /* margin-top:25rem; */
    background:url(../img/bg_banner.jpg);

}
/* #bnr .box{
    width:700px;
} */
#bnr .flex{
    justify-content:space-evenly;
}

@media screen and (max-width:799px) {
    /*SP-Tablet*/
}
@media screen and (max-width:479px) {
    /*SP*/
    #bnr .box{
        width:100%;
    }
    #bnr a{
        margin:1rem auto ;
    }
}

/*--------------------------------------------
    Footer
--------------------------------------------*/

footer{
    background:#d4e5fe;
    margin-top:20rem;
}
footer .footer_box{
    background:#e1ecfa;
    width:100%;
    padding-top: 5rem;
}
footer .logo{
    width:8%;
}
footer a{
    color:#333;
    transition:0.3s;
}
footer a:hover{
    color:#90B721;
    text-decoration:none;
}
footer .footer_navi_wrap{
    width:82%;
    margin-left:10%;
    /* padding-bottom: 50rem; */
}
footer .footer_navi{
    width:100%;
}
footer .footer_navi_nosub{
    width:100%;
    align-self: flex-start;
}
footer .footer_navi dl{
    width: 33%;
    margin-bottom: 3rem;
}
footer .footer_navi_nosub dl{
    width:33%;
    margin-bottom:3rem;
}
footer .footer_navi dt{
    font-weight:600;
    margin-bottom:2rem;
}
footer .footer_navi dt a{
    padding-bottom:0.5rem;
}
footer .footer_navi dd{
    font-size:1.3rem;
    margin-bottom:1rem;
}
footer .footer_bottom{
    padding:2rem 0;
    background-color:#333;
}
footer .footer_bottom .flex{
    justify-content: center;
}
footer .adress{
    font-size: 1.2rem;
    color:#fff;
    margin-right:4rem;
}
footer .footer_img{
    background:url(../img/bg_footer.jpg) no-repeat;
    background-size:cover;
    background-position:center top ;
    width:100%;
    padding-bottom:33.333%;
}
footer .copyright{
    text-align:center;
    font-size:1.2rem;
    color:#fff;
}

@media screen and (max-width:799px) {
    /*SP-Tablet*/
    footer .footer_navi{
        width:50%;
    }
    footer .footer_navi_nosub{
        width:50%;
    }
    footer .footer_navi dl{
        width:50%;
    }
    footer .footer_navi_nosub dl{
        width:50%;
    }
}
@media screen and (max-width:479px) {
    /*SP*/
    footer .footer_img{
        background:url(../img/bg_footer_s.jpg) no-repeat;
        background-size:contain;
        background-position:center top ;
    }
    footer .logo{
        width:15%;
        margin-left:42.5%;
        margin-bottom: 5rem;
    }
    footer .footer_navi_wrap{
        /* padding-bottom: 20rem; */
    }
    footer .footer_navi,
    footer .footer_navi_nosub{
        width:100%;
        /* margin-left:5%; */
    }
    footer .footer_navi dl,
    footer .footer_navi_nosub dl {
        width: 50%;
        margin-bottom: 2rem;
    }
    footer .adress{
        text-align:center;
        margin-right:0;
    }
    footer .footer_bottom{
        padding:2rem 0 6rem;
    }
}


/*--------------------------------------------
    Go to Top
--------------------------------------------*/
#pageTop {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 2;
}
#pageTop i {
    padding-top: 6px
}
#pageTop a {
    display: block;
    z-index: 999;
    padding: 2rem 3rem;
    /* border-radius: 30px; */
    /* width: 35px; */
    /* height: 35px; */
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size:1.2rem;
    transition:0.3s;
}
#pageTop a:hover {
    text-decoration: none;
    background-color: #90B721;
}

@media screen and (max-width:799px) {
    /*SP-Tablet*/

}
@media screen and (max-width:479px) {
    /*SP*/
    #pageTop {
        width:100%;
    }
    #pageTop a {
        padding: 1rem 3rem;
    }
}