@charset "utf-8";

/*--------------------------
	共通の設定/=iPhone 320px(縦)からの設定 /
-------------------------- */
/*html{
	font-size: 62.5%;初期値10px設定
}*/
body{
    font-family: 'Kiwi Maru', serif;;
    /*font-size: 1.4rem;*/
    background-color: rgba(226,89,237,0.3);
    color: #333;
}


.header{
    /*margin: 0;*//*横幅いっぱい表示*/
    /*width: 100vw;*/
    height: 100vh;/*縦幅いっぱい表示*/
    background-image: url("../img/img/top.jpg");
    background-size: cover;
    background-position: center;
}

.container{
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    background-color: rgba(255,255,255,.5);
    box-shadow: 0 5px 10px -6px rgba(0,0,0,.8);
}
.container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.h_logo{
    font-family: 'Abril Fatface', cursive;/*ffffffffffffffffff*/
    font-size: 20px;
    line-height: 1.2;
    margin-right: 20px;
    letter-spacing: .05em;
}

.h_logo a{
    text-decoration: none;
    color: #333;
}

.h_nav{
    font-family: 'Abril Fatface', cursive;}/*ffffffffffffffffff*/

.h_nav_list{
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.h_nav_item:not(:last-child){
    margin-right: 20px;
}

.h_nav_item a{
    position: relative;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    padding: 5px 0;
    transition: .3s;
    letter-spacing: .05em;
    text-decoration: none;
    color: #333;
}
.h_nav_item a:after{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    content: "";
    transition: .3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #333;
}

.h_nav_item a:hover:after{
    width: 100%;
}
.about{
    height: 100vh;/*縦幅いっぱい表示*/
    background-image: url("../img/img/about.png");
    background-size: cover;
    background-position: center;
}
#about{
    position: relative;
}
.about_title{
    font-family: 'Abril Fatface', cursive;/*ffffffffffffffffff*/
    text-align: center;
    font-size: 20px;
    letter-spacing: .05em;
    padding: 160px 0 80px;
}
.mv-text{
    text-align: center;
    font-size: 15px;
    line-height: 4;
}
.sp-only {
    display: block;
}
.kumo{
    max-width: 206px/*55%*/;
    position: absolute;
    top: 100px;
    left: 10px;

/*アニメーション設定*/
    animation: kumo 5s infinite alternate;
/*基準の位置*/
    transform-origin: /*bottom*/ center;
}
/*アニメーション動き*/
@keyframes kumo{
    0%{
    transform: translate(0, 0px);
} 
    100%{
    transform: translate(0, 40px);
}
}
.bottle{
    width: 30%;
    position: absolute;
    top: 60px;
    left: 30px;

/*アニメーション設定*/
    animation: bottle 5s infinite alternate;
/*基準の位置*/
    transform-origin: /*bottom*/ center;
}
/*アニメーション動き*/
@keyframes bottle{
    0%{
    transform: translate(0, 0px);
} 
    100%{
    transform: translate(0, 40px);
}
}
.candle{
    width: 30%;
    position: absolute;
    top: 530px;
    left: 30px;

/*アニメーション設定*/
    animation: candle 5s infinite alternate;
/*基準の位置*/
    transform-origin: /*bottom*/ center;
}
/*アニメーション動き*/
@keyframes candle{
    0%{
    transform: translate(0, 20px);
} 
    100%{
    transform: translate(0, 0px);
}
}
.cat{
    width: 30%;
    position: absolute;
    top: 60px;
    right: 30px;

/*アニメーション設定*/
    animation: cat 5s infinite alternate;
/*基準の位置*/
    transform-origin: /*bottom*/ center;
}
/*アニメーション動き*/
@keyframes cat{
    0%{
    transform: translate(0, 0px);
} 
    100%{
    transform: translate(0, 40px);
}
}
.cosmetics{
    width: 30%;
    position: absolute;
    top: 530px;
    right: 30px;

/*アニメーション設定*/
    animation: cosmetics 5s infinite alternate;
/*基準の位置*/
    transform-origin: /*bottom*/ center;
}
/*アニメーション動き*/
@keyframes cosmetics{
    0%{
    transform: translate(0, 20px);
} 
    100%{
    transform: translate(0, 0px);
}
}
.access_title{
    font-family: 'Abril Fatface', cursive;/*ffffffffffffffffff*/
    text-align: center;
    font-size: 20px;
    letter-spacing: .05em;
    padding: 80px 0 50px;
}
.access_box{
    margin-bottom: 80px;
}
.access_item{
    text-align: center;
    line-height: 2;
}
.map{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
}
.kotira a{
    text-decoration: none;
    line-height: 4;
    color: #FF00D2;
}
.kotira a:hover {
	opacity: 0.6;
}
/*.map{
    text-align: center;
    margin-bottom: 50px;
}
iframe{
    width: 80%;
    height: 300px;
    padding: 10px;
}*/
.f_box{
    width: 98%;
    margin: 0 auto;
}
.f_nav_menu{
    display: flex;
    justify-content: flex-end;
    font-family: 'Abril Fatface', cursive;/*ffffffffffffffffff*/
}
.f_nav_menu li{
    padding-right: 20px;
    margin-bottom: 10px;
    z-index: 10;
}
.f_nav_menu li a{
    font-size: 13px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.f_nav_menu li a:hover{
    color: #E9CE1D;
}
.copyright{
    font-size: 13px;
    text-align: center;
    margin-bottom: 30px;
}
/*--------------------------
	タブレット / iPad 768px(縦)から1023pxまでの設定 /
-------------------------- */
@media screen and (min-width:768px){
/*TB用のCSSをここに記述*/
/*body{
    font-size: 1.5rem;
}*/
iframe{/*map*/
    width: 70%;
    height: 500px;
    padding: 30px;
}
/*.container{
    padding: 100px 180px;
}*/
.container{
    padding: 20px 120px;
}
.h_logo{
    font-size: 30px;
}
.h_nav_item a{
    font-size: 16px;
}
.about_title{
    font-family: 'Abril Fatface', cursive;/*ffffffffffffffffff*/
    text-align: center;
    font-size: 22px;
    letter-spacing: .05em;
    padding: 160px 0 100px;
}
.mv-text{
    font-size: 17px;
    line-height: 4;
}
.kumo{
    max-width: 378px/*25%*/;
    position: absolute;
    top: 180px;
    left: 160px;
}
.bottle{
    width: 20%;
    position: absolute;
    top: 80px;
    left: 150px;
}
.candle{
    width: 20%;
    position: absolute;
    top: 490px;
    left: 150px;
}
.cat{
    width: 20%;
    position: absolute;
    top: 80px;
    right: 150px;
}
.cosmetics{
    width: 20%;
    position: absolute;
    top: 490px;
    right: 150px;
}
.access_title{
    font-size: 22px;
    padding: 160px 0 80px;
}
.access_item{
    font-size: 17px;
}
.map{
    width: 75%;
}
.f_nav_menu li a{
    font-size: 16px;
}
}
/*--------------------------
	PC /1024px以上の設定/
-------------------------- */
@media screen and (min-width:1024px){
body{
    font-size: 1.6rem;
}
.map{
    width: 50%;
    font-size: 18px;
}
}