@charset "UTF-8";
/*====================================
common
=====================================*/
html{
    font-size: 62.5%;
}

body{
    font-family: "Noto Sans JP";
    font-style: normal;
    color: #000;
    background-color: #fff;
    line-height: 1.5;
}

img{
    max-width: 100%;
    height: auto;
    margin-right: auto;
}

p{
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal; 
}

.price__number{
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
}

.price{
    font-size: 14px;
    font-weight: 700;
}


/*====================================
PC
=====================================*/
@media screen and (min-width:769px) {
    .bg{
        width: 100%;
        background-image: url(../images/pc-top.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
        background-position:top center;
        position: fixed;      
    }
    

    .mbg{
        width: 375px;
        margin-left: 20%;
   /*      margin: 0 auto; */
        background-color: #fff;
        position: sticky;

    }

    #top-chiken {
        position: fixed;
        left: calc(20% + 305px);
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }

    .fixed{
        position: sticky;            
    }

    .nav{
        padding: 0 30%;
    }
    
}

/*====================================
header
=====================================*/
.header{
    display: flex;
    justify-content: space-between;
}

/* nav{
    display: flex;
    gap: 30px;
} */

nav a{
    margin-right: 30px;
/*     display: block; */
    width: 20px;
}

@media screen and (min-width:769px) {
/* ここにスタイルCSSをコピー */
}


.top__main{
    position: relative;
}

.top__logo{
    width: 195px;
    height: 195px;
    flex-shrink: 0;
    position: absolute;
    right: 25%;
    top: 150px;
}


.more__btn{
    background-color: #E42D24;
    color: #fff;
    padding: 13px 50px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    width: 300px;
    height: 43px;
    margin: 20px auto;
}

header{
    background-color: #F6F5EA;
    height: 60px;
    padding: 10px 15px;
}

.header__btn {
    width: 24px;
    margin-bottom: 2px;
}

/*menu画面*/
.nav{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    background: #fff;
    width: 100%;
    height: 100%;
}

.nav.active{
    transform: translateX(0);
}

.nav__header{
/*     display: flex; */
    justify-content: space-between;
    align-items: center;
    height: 20%;
}

.nav__logo{
    width: 50%;
    margin-left: 5%;
    margin-top: 15%;
}

.nav__btn{
    width: 7%;
    margin-right: 40px;
}

.nav__list{
    background-color: #F6F5EA;
    padding: 0 10px 50px 20px;
}

.nav__item{
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    padding-top: 5.5rem;
}


/* /*====================================
top-chiken
=====================================*/

/* .top-chiken{
    width: 70px;
    margin-left: 80%;
    margin-bottom: 10px;
}  */

/*====================================
top-chiken
=====================================*/
#top-chiken{
    width: 70px;
}

.top-chiken{
    margin: 0 10px 60px 0;
}

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

@media screen and (min-width:769px) {
    #top-chiken {
        position: fixed;
        left: calc(20% + 305px);
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }
}

/*　上に上がる動き　*/
#top-chiken.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#top-chiken.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(150px);
  }
}

/*画像の切り替えと動き*/
#top-chiken a {
    /*aタグの形状*/
	display: block;
	width: 70px;
	height: 100px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
    /*背景画像の指定*/
	background: url("../images/top-chiken1.png") no-repeat center;
	background-size: contain;
}

#top-chiken.floatAnime a{
	width: 70px;
	height: 130px;
    /*背景画像の指定*/
	background: url("../images/top-chiken2.png") no-repeat center;
	background-size: contain;
    /*アニメーションの指定*/
	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  25% { transform: translateX(-6px);opacity: 1; }
  50% { transform: translateX(0) }
  100% { transform: translateX(6px);opacity: 1; }
}


/*====================================
footer
=====================================*/
.fixed{
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    height: 60px;

    position: fixed;
    bottom: 0;
    width: 100%;
    position: sticky;
}

.fixed img{
    margin-right: 5px;
}

.fixed a{
    background-color: #E42D24;
    color: #fff;
    font-size: 14px;
    width: calc((100% - 2px)/3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer{
    background-color: #F6F5EA;
    padding: 20px;
    height: 485px;
    text-align: center;
}

.footer__btn-container{
    display: flex;
    justify-content: space-between;
}

.footer li{
    font-size:12px;
    display: block;
    margin: 15px;
}

.footer a{
    position: relative;
}

.footer__name{
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin: 25px;
}

.footer__btn{
    margin: 20px 10px;
    padding: 10px;
    background-color: rgb(0 149 72 / 80%);
    color: #fff;
    width: 160px;
    height: 40px;
    border-radius: 10px;
}

.footer__btn::after{
    display: block;
    content: '';
    width: 2.4rem;
    height: 2.4rem;    
    background-image: url(../images/arrow-forward.svg);
    background-size: 12px;
    background-repeat: no-repeat;
    position: absolute;
    top: 12px;
    left: 24px;
}

.footer__btn:hover{
    opacity: 0.5;
}

.footer__icon{
    margin: 25px;
    gap: 20px;
}

.footer__icon img{
    margin-left: 15px;
}

















