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

body{
    min-width: 1000px;
    font-family: serif;
    color: #353434;
}

/*=== ローディング画面のためのCSS 4-2-3===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #43a3c8;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}



/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #43a3c8;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;

}

@keyframes PageAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/

#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
/* ------------------------------------------------------------------------------------- */
.container{
    width: 100%;
    display: flex;
}

.header{
    background-color: #43a3c8;
    width: 100px;
    height: 100%;
    text-align: center;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    /* ヘッダーの固定　https://www.nowte.net/ui/ui-css-fixed-header　参照サイト/ */
}
/*========= ナビゲーションのためのCSS == 5-1-22======================================================================================== */

/*アクティブになったエリア*/
#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: #43a2c8ee;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	left:-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;
}

#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: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-size: 25px;
}


/*==== ボタンのためのCSS ====*/

.openbtn{
	position:fixed;
	top:20px;
	left: 23px;/* ボタンの位置調整 */
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 60px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	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 img{
    width: 80%;
}
.header1{
    display: none;
}
.header2{
    margin-top: 60px;
}
.header3{
    margin-top: 170px;
    padding: 26% 26% 0;
}
.content{
    background-color: #fffaf0;
    width: 93%;
    margin-left: 100px;/* headerのwidthと同じ数字 */
}
/*========= ページトップのためのCSS（右下のTOPボタン） == 8-1-2=========================================================================== */

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	/* background:#f0e68c; */
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #5A5757;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#page-top a:hover{
	background: #f0e68c;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
  /* ------------------------------------------------------------------------------------------------------------------- */
}

.top{
    width: 100%;
    text-align: center;
    margin: 6% 0;
}
.top h2{
    margin-bottom: 3%;
}
.top img{
    width: 100%;
    margin-top: 5%;
}

.sentence{
    width: 100%;
    margin-bottom: 10%;
}
.sentence h3{
    font-size: 25px;
    margin: 10% 0 0 5%;
}
.sentence h4{
    font-size: 20px;
    margin: 0 0 2% 5%;

}
.sentence p{
    font-size: 18px;
    margin: 0 0 15% 5%;
}
.sp{
    display: none;
}
.image{
    width: 100%;
    display: flex;
    justify-content: center;
}
.image img{
    width: 19%;
    margin-bottom: 10%;
}

.productlist{
    width: 100%;
    margin-bottom: 5%;
    text-align: center;
    padding: 5% 0;
}
.productlist a {
    color: #00428E;
    font-size: 30px;
    font-weight: bold;
    background: transparent;
    padding: 25px 70px;
    border: 3px solid #00428E;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    transition: .3s;
    text-decoration: none;
}
.productlist a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #00428E;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.productlist a:hover {
    color: #fff;
}
.productlist a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}



.footer{
    width: 100%;
    background-color: #00428E;
    text-align: center;
    color: #fff;
    padding: 5% 0;
}
.footer img{
    width: 20%;
}
.footer1{
    padding-top: 10px;
}
}

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

/*=== ローディング画面のためのCSS 4-2-3===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #43a3c8;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #43a3c8;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;

}

@keyframes PageAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/

#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
/* ------------------------------------------------------------------------------------- */
.container{
    width: 100%;
    display: flex;
}

.header{
    background-color: #43a3c8;
    width: 100%;
    height: 10%;
    /* text-align: center; */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    /* ヘッダーの固定　https://www.nowte.net/ui/ui-css-fixed-header　参照サイト/ */
}
/*========= ナビゲーションのためのCSS == 5-1-22======================================================================================== */

/*アクティブになったエリア*/
#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: #43a2c8ee;
    /*丸のスタート位置と形状*/
    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;
}

#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: #fff;
    text-decoration: none;
    padding:10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 25px;
}


/*==== ボタンのためのCSS ====*/

.openbtn{
    position:fixed;
    top:15px;
    right: 0;/* ボタンの位置調整 */
    z-index: 9999;/*ボタンを最前面に*/
    cursor: pointer;
    width: 60px;
    height:50px;
}
    
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    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-1{
    display: flex;
    justify-content: space-between;
}
.header1 img{
    width: 200px;
    margin: 5px 0 0 15px;
}
.header2{
    margin: 0 4% 0 0 ;
}
.header2 img{
    width: 77px;

}
.header3{
    margin-top: 170px;
    padding: 26% 26% 0;
    display: none;
}
.header4{
    display: none;
}
.content{
    background-color: #fffaf0;
    width: 100%;
    margin-top: 80px;/* headerのwidthと同じ数字 */
}
/*========= ページトップのためのCSS（右下のTOPボタン） == 8-1-2=========================================================================== */

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    /* background:#f0e68c; */
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #5A5757;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
}
#page-top a:hover{
    background: #f0e68c;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/*　下に下がる動き　*/

#page-top.DownMove{
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
from {
opacity: 1;
    transform: translateY(0);
}
to {
opacity: 1;
    transform: translateY(100px);
}
  /* ------------------------------------------------------------------------------------------------------------------- */
}

.top{
    width: 100%;
    text-align: center;
    margin: 6% 0;
}
.top h2{
    margin-bottom: 3%;
}
.top img{
    width: 100%;
    margin-top: 5%;
}

.sentence{
    width: 100%;
    margin-bottom: 10%;
}
.sentence h3{
    font-size: 25px;
    margin: 10% 0 0 5%;
}
.sentence h4{
    font-size: 20px;
    margin: 0 0 2% 5%;

}
.sentence p{
    font-size: 18px;
    margin: 0 0 15% 5%;
}
.sp{
    display: none;
}
.image{
    width: 100%;
    display: flex;
    justify-content: center;
}
.image img{
    width: 19%;
    margin-bottom: 10%;
}

.productlist{
    width: 100%;
    margin-bottom: 5%;
    text-align: center;
    padding: 5% 0;
}
.productlist a {
    color: #00428E;
    font-size: 30px;
    font-weight: bold;
    background: transparent;
    padding: 25px 70px;
    border: 3px solid #00428E;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    transition: .3s;
    text-decoration: none;
}
.productlist a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #00428E;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.productlist a:hover {
    color: #fff;
}
.productlist a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.footer{
    width: 100%;
    background-color: #00428E;
    text-align: center;
    color: #fff;
    padding: 5% 0;
}
.footer img{
    width: 20%;
}
.footer1{
    padding-top: 10px;
}

}


/*SPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブ*/
/*SPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブSPサイズレスポンシブ*/
@media(max-width:599px) {
    body{
        max-width: 599px;
        font-family: serif;
        color: #353434;
    }
/*=== ローディング画面のためのCSS 4-2-3===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #43a3c8;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #43a3c8;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;

}

@keyframes PageAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/

#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
/* ------------------------------------------------------------------------------------- */
.container{
    width: 100%;
    display: flex;
}

.header{
    background-color: #43a3c8;
    width: 100%;
    height: 73px;
    /* text-align: center; */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    /* ヘッダーの固定　https://www.nowte.net/ui/ui-css-fixed-header　参照サイト/ */
}
/*========= ナビゲーションのためのCSS == 5-1-22======================================================================================== */

/*アクティブになったエリア*/
#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: #43a2c8ee;
    /*丸のスタート位置と形状*/
    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;
}

#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: #fff;
    text-decoration: none;
    padding:10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 25px;
}


/*==== ボタンのためのCSS ====*/

.openbtn{
    position:fixed;
    top:15px;
    right: 0;/* ボタンの位置調整 */
    z-index: 9999;/*ボタンを最前面に*/
    cursor: pointer;
    width: 60px;
    height:50px;
}
    
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
      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-1{
    display: flex;
    justify-content: space-between;
}
.header1 img{
    width: 160px;
    margin: 9px 0 0 15px;
}
.header2{
    margin: 1% 10% 0 0 ;
}
.header2 img{
    width: 70px;

}
.header3{
    margin-top: 170px;
    padding: 26% 26% 0;
    display: none;
}
.header4{
    display: none;
}
.content{
    background-color: #fffaf0;
    width: 100%;
    margin-top: 73px;/* headerのwidthと同じ数字 */
}
/*========= ページトップのためのCSS（右下のTOPボタン） == 8-1-2=========================================================================== */

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    /* background:#f0e68c; */
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #5A5757;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
}
#page-top a:hover{
    background: #f0e68c;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
      opacity: 1;
    transform: translateY(0);
  }
  to {
      opacity: 1;
    transform: translateY(100px);
  }
  /* ------------------------------------------------------------------------------------------------------------------- */
}

.top{
    width: 100%;
    text-align: center;
    margin: 6% 0;
}
.top h2{
    margin-bottom: 3%;
}
.top img{
    width: 100%;
    margin-top: 5%;
}

.sentence{
    width: 100%;
    margin-bottom: 10%;
}
.sentence h3{
    font-size: 20px;
    margin: 10% 0 5%;
}
.sentence h4{
    font-size: 20px;
    margin: 0 0 5%;

}
.sentence p{
    font-size: 18px;
    margin: 0 0 15% 5%;
}
.image{
    width: 100%;
    display: flex;
    justify-content: center;
}
.image img{
    width: 19%;
    margin-bottom: 10%;
}

.productlist{
    width: 100%;
    margin-bottom: 5%;
    text-align: center;
    padding: 5% 0;
}
.productlist a {
    color: #00428E;
    font-size: 21px;
    font-weight: bold;
    background: transparent;
    padding: 25px 18px;
    border: 3px solid #00428E;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    transition: .3s;
    text-decoration: none;
}
.productlist a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #00428E;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.productlist a:hover {
    color: #fff;
}
.productlist a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.footer{
    width: 100%;
    background-color: #00428E;
    text-align: center;
    color: #fff;
    padding: 5% 0;
}
.footer img{
    width: 20%;
}
.footer1{
    padding-top: 10px;
}
 
}