@charset "UTF-8";
/*PCサイズレスポンシブ*/
@media(min-width:1000px) {

    /* PCcss */

body{
    background-color: #f0f0f0;
    min-width: 1000px;
}
.container{
    width: 100%;
}
/* ハンバーガーメニューここから */
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #9dc1a7;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #9dc1a7;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #ffffff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-size: 20px;
}
#g-nav li a:hover{
    color: cadetblue;
}
#g-nav li a:active{
    color: brown;
}
/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:12px;
	right: 20px;
    /* ボタンの位置 */
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* ハンバーガーここまで */
.header{
    width: 100%;
    height: 60px;
    /* background-color: aqua; */
}
.header1{
width: 20%;
height: 60px;
/* background-color: chartreuse; */
}
.header1 img{
    height: 50px;
    margin-top: 5px;
    margin-left: 5%;
    /* background-color: chocolate; */
}
.top{
    width: 100%;
    text-align: center;
}
.top1{
    width: 100%;
    height: 200px;
    background-color: #9dc1a7;
    position: relative;
}
.top1 h1{
    font-family: "ta-koigokoro", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    font-size: 60px;
    margin: 0 auto;
    padding-top: 70px;
    z-index: 100;
}
.top2{
    /* background-color: blueviolet; */
    width: 50%;
    position: absolute;
    top: 68px;
    right: 0;
    z-index: 1;
}
.myselftop{
    width: 100%;
    /* display: flex; */
    margin-top: 10px;
    margin-bottom: 80px;
}
.myselftop1{
    width: 100%;
    text-align: center;
    /* background-color: aqua; */
    }
    .myselftop1 h4{
        font-size: 40px;
        margin-bottom: 0;
    }
    .myselftop1 p{
        font-size: 15px;
    }
.myselftop2{
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
}
.myselftop2 img{
    height: 300px;
}
.myself{
    width: 100%;
    display: flex;
    margin-top: 100px;
    margin-bottom: 50px;
}
.myself1{
    width: 20%;
}
.myself1 img{
    width: 500px;
    height: 450px;
}
.myself2{
    width: 80%;
}
.myself2 p{
    font-size: 18px;
    line-height: 35px;
    padding-left: 10%;
}
.footer{
    width: 100%;
    text-align: center;
}
.footer1{
    width: 50%;
    height: 80px;
    margin: 0 auto;
    /* background-color: blueviolet; */
}
.footer1 img{
 height: 80px;
}
}


/*ipadサイズレスポンシブ*/
@media(min-width:600px) and (max-width:999px) {
    body {
        min-width: 600px;
        max-width: 999px;
        background-color: #f0f0f0;
    }

    .container {
        width: 100%;
    }

    /* PCcss */

    /* ハンバーガーメニューここから */
    /*========= ナビゲーションのためのCSS ===============*/
    
    /*アクティブになったエリア*/
    #g-nav.panelactive{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        top: 0;
        width:100%;
        height: 100vh;
    }
    
    /*丸の拡大*/
    .circle-bg{
        position: fixed;
        z-index:3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #9dc1a7;
        /*丸のスタート位置と形状*/
        transform: scale(0);/*scaleをはじめは0に*/
        right:-50px;
        top:-50px;
        transition: all .6s;/*0.6秒かけてアニメーション*/
    }
    
    .circle-bg.circleactive{
        transform: scale(50);/*クラスが付与されたらscaleを拡大*/
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav-list{
        display: none;/*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        background-color: #9dc1a7;
    }
    
    #g-nav.panelactive #g-nav-list{
         display: block; /*クラスが付与されたら出現*/
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;/*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    
    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity:1;
    }
    
    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li{
    animation-name:gnaviAnime;
    animation-duration:1s;
    animation-delay:.2s;/*0.2 秒遅らせて出現*/
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes gnaviAnime{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
    }
    
    
    /*リストのレイアウト設定*/
    #g-nav li{
        text-align: center; 
        list-style: none;
    }
    
    #g-nav li a{
        color: #ffffff;
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
        font-size: 20px;
    }
    #g-nav li a:hover{
        color: cadetblue;
    }
    #g-nav li a:active{
        color: brown;
    }
    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        top:12px;
        right: 20px;
        /* ボタンの位置 */
        z-index: 9999;/*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height:50px;
    }
        
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
          width: 45%;
      }
    
    .openbtn span:nth-of-type(1) {
        top:15px;	
    }
    
    .openbtn span:nth-of-type(2) {
        top:23px;
    }
    
    .openbtn span:nth-of-type(3) {
        top:31px;
    }
    
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    /* ハンバーガーここまで */
    .header{
        width: 100%;
        height: 60px;
        /* background-color: aqua; */
    }
    .header1{
    width: 20%;
    height: 60px;
    /* background-color: chartreuse; */
    }
    .header1 img{
        height: 50px;
        margin-top: 5px;
        margin-left: 5%;
        /* background-color: chocolate; */
    }
    .top{
        width: 100%;
        text-align: center;
    }
    .top1{
        width: 100%;
        height: 200px;
        background-color: #9dc1a7;
        position: relative;
    }
    .top1 h1{
        font-family: "ta-koigokoro", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #ffffff;
        font-size: 60px;
        margin: 0 auto;
        padding-top: 70px;
        /* z-index: 100; */
    }
    .top2{
        /* background-color: blueviolet; */
        width: 50%;
        position: absolute;
        top: 68px;
        right: 0;
        /* z-index: 1; */
    }
    .myselftop{
        width: 100%;
        /* display: flex; */
        margin-top: 10px;
        margin-bottom: 80px;
    }
    .myselftop1{
        width: 100%;
        text-align: center;
        /* background-color: aqua; */
        }
        .myselftop1 h4{
            font-size: 40px;
            margin-bottom: 0;
        }
        .myselftop1 p{
            font-size: 15px;
        }
    .myselftop2{
        width: 100%;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        padding-top: 40px;
    }
    .myselftop2 img{
        height: 200px;
    }
    .myself{
        width: 100%;
        display: flex;
        margin-top: 100px;
        margin-bottom: 50px;
    }
    .myself1{
        width: 20%;
    }
    .myself1 img{
        width: 500px;
        height: 450px;
    }
    .myself2{
        width: 80%;
    }
    .myself2 p{
        font-size: 15px;
        line-height: 35px;
        padding-left: 10%;
    }
    
    
    .footer{
        width: 100%;
        text-align: center;
    }
    .footer1{
        width: 50%;
        height: 80px;
        margin: 0 auto;
        /* background-color: blueviolet; */
    }
    .footer1 img{
     height: 60px;
    }
    }

    /*SPサイズレスポンシブ*/
@media (max-width:599px) {
    body {
        max-width: 599px;
        background-color: #f0f0f0;
    }

    .container {
        width: 100%;
    }

    /* タブレットcss */

    /* ハンバーガーメニューここから */
    /*========= ナビゲーションのためのCSS ===============*/
    
    /*アクティブになったエリア*/
    #g-nav.panelactive{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        top: 0;
        width:100%;
        height: 100vh;
    }
    
    /*丸の拡大*/
    .circle-bg{
        position: fixed;
        z-index:3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #9dc1a7;
        /*丸のスタート位置と形状*/
        transform: scale(0);/*scaleをはじめは0に*/
        right:-50px;
        top:-50px;
        transition: all .6s;/*0.6秒かけてアニメーション*/
    }
    
    .circle-bg.circleactive{
        transform: scale(50);/*クラスが付与されたらscaleを拡大*/
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav-list{
        display: none;/*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        background-color: #9dc1a7;
    }
    
    #g-nav.panelactive #g-nav-list{
         display: block; /*クラスが付与されたら出現*/
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;/*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    
    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity:1;
    }
    
    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li{
    animation-name:gnaviAnime;
    animation-duration:1s;
    animation-delay:.2s;/*0.2 秒遅らせて出現*/
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes gnaviAnime{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
    }
    
    
    /*リストのレイアウト設定*/
    #g-nav li{
        text-align: center; 
        list-style: none;
    }
    
    #g-nav li a{
        color: #ffffff;
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
        font-size: 20px;
    }
    #g-nav li a:hover{
        color: cadetblue;
    }
    #g-nav li a:active{
        color: brown;
    }
    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        top:2px;
        right: 20px;
        /* ボタンの位置 */
        z-index: 9999;/*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height:50px;
    }
        
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
          width: 45%;
      }
    
    .openbtn span:nth-of-type(1) {
        top:15px;	
    }
    
    .openbtn span:nth-of-type(2) {
        top:23px;
    }
    
    .openbtn span:nth-of-type(3) {
        top:31px;
    }
    
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    /* ハンバーガーここまで */
    .header{
        width: 100%;
        height: 50px;
        /* background-color: aqua; */
    }
    .header1{
    width: 20%;
    height: 30px;
    /* background-color: chartreuse; */
    }
    .header1 img{
        height: 30px;
        margin-top: 5px;
        margin-left: 5%;
        /* background-color: chocolate; */
    }
    .top{
        width: 100%;
        text-align: center;
    }
    .top1{
        width: 100%;
        height: 150px;
        background-color: #9dc1a7;
        position: relative;
    }
    .top1 h1{
        font-family: "ta-koigokoro", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #ffffff;
        font-size: 30px;
        margin: 0 auto;
        padding-top: 55px;
        /* z-index: 100; */
    }
    .top2{
        /* background-color: blueviolet; */
        width: 50%;
        position: absolute;
        top: 68px;
        right: 0;
        /* z-index: 1; */
    }
    .myselftop{
        width: 100%;
        /* display: flex; */
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .myselftop1{
        width: 100%;
        text-align: center;
        /* background-color: aqua; */
        }
        .myselftop1 h4{
            font-size: 30px;
            margin-bottom: 0;
        }
        .myselftop1 p{
            font-size: 12px;
        }
    .myselftop2{
        width: 100%;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        padding-top: 40px;
    }
    .myselftop2 img{
        height: 100px;
    }
    .myself{
        width: 100%;
        display: flex;
        margin-top: 100px;
        margin-bottom: 50px;
    }
    .myself1{
        width: 20%;
        display: none;
    }
    .myself1 img{
        width: 300px;
        height: 250px;
        display: none;
    }
    .myself2{
        width: 100%;
        /* text-align: center; */
    }
    .myself2 p{
        font-size: 12px;
        line-height: 30px;
        padding-left: 5%;
    }
    
    
    .footer{
        width: 100%;
        text-align: center;
    }
    .footer1{
        width: 50%;
        height: 80px;
        margin: 0 auto;
        /* background-color: blueviolet; */
    }
    .footer1 img{
     height: 60px;
    }
    }
