@charset "UTF-8" ;

/*===============
 common 
==============*/
:root {
    --primary-black: #33302c;
    --primary-lightYellow: #FEF2DA;
    --primary-pink: #FF8572;
    --primary-yellow: #FFDD8F;
    --primary-blue: #83ACAC;
    --primary-brown: #7C3200;
    --primary-Red: #FD4427;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Maru Gothic","Itim","Cherry Bomb One","Dela Gothic One";
    font-style: normal;
    color: var(--primary-black);
    background-color: var(--primary-lightYellow);
    line-height: normal;
    max-width: 390px;
    overflow-x: hidden;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.main {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.pc__menu {
    display: none;
}

/* PC背景レスポンシブ */
@media screen and (min-width: 376px){
    .pc__wrap::before {
        content: "";
        background-color: var(--primary-lightYellow);
        background-image: url(../image/gallery/IMG_8169.JPG);
        width: 100vw;
        height: 100vh;
        background-repeat: no-repeat;
        background-size: cover;
        position: fixed;
        top: 0;
        bottom: 10px;
        left: 0;
        z-index: -1;
    }
}

@media screen and (min-width: 980px){
    .pc__menu {
        display: block;
    }
    .pc__wrap::before {
        content: "";
        background-color: var(--primary-lightYellow);
        background-image: url(../image/pc/pc_background.png) ;
        width: 100vw;
        height: 100vh;
        background-repeat: no-repeat;
        background-size: cover;
        position: fixed;
        top: 0;
        bottom: 10px;
        left: 0;
        z-index: -1;
    }
}

/* ==============
header
============== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 390px;
    padding: 10px 30px;
    z-index: 999;
}


.header__icon {
    width: 47px;
    height: 44px;
}

/* headerレスポンシブ:*/
@media screen and (min-width: 980px){
    .header {
        display: none;
    }
}

/* ==============
ハンバーガーメニュー
============== */
.openbtn{
	position: relative;
	cursor: pointer;
    width: 50px;
    height:50px;
    border-radius: 100%;
}


/*ハンバーガーメニュー　線*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background: var(--primary-black);
  	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;
}

/*activeクラスが付与されると線が回転して×に*/
.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%;
}

/* ==============
nav
============== */
.nav{
    background-color: var(--primary-lightYellow);
    position: fixed;
    z-index: 999;
    height: 100vh;
    top: 0;
    left: 0;
    width: 375px;
    height: 100vh;
    transform: translateY(-100%);
    transition: all 0.4s;
    overflow: hidden;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    width: 390px;
    align-items: center;
    margin: 0 auto;
}

.nav.active {
    transform: translateY(0);
    height: 100vh;
    width: 100%;
}

.nav__list {
    margin: 0px 40% 0 40%;
}

.nav__item {
    color: var(--primary-black);
    font-family: "Itim";
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 55px;
    transition: all 0.1s ease 0s;
}

.nav__item:hover {
    color:#FF8572;
}

.nav__snsIcon {
    display: flex;
    height: 18px;
    gap: 19px;
    justify-content: center;
    margin-top: 55px;
}

.nav__snsIcon__img {
    transition: 0.1s
}

.nav__snsIcon__img:hover {
    opacity: 0.5;
    text-align: center;
}

.nav__snsIcon__img {
    height: 18px;
}

.bottom__design {
    display: flex;
    height: 150px;
    justify-content: center;
    position: absolute;
    margin: 40px auto;
    width: 100%;
}

.bottom__illust1 {
    width: 100px;
    height: 100px;
    position: relative;
    top: 50px;
    transform: rotate(-9.677deg);
    animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}

.bottom__illust2 {
    animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}

.bottom__illust3 {
    width: 100px;
    height: 100px;
    position: relative;
    top: 10px;
    transform: rotate(-9.677deg);
    animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
} 

/* nav:px */
@media screen and (min-width: 980px){
    .nav {
        display: none;
    }

    .pc__menu {
        width: 19.7vw;
        height: 27vw;
        position: fixed;
        top: 50%;
        right: 9.7vw;
        transform: translateY(-50%);
    }

    .header__icon {
        width: 47px;
        height: 44px;
        margin: 0 auto;
    }

    .nav__list {
        text-align: center;
        margin: 0;
    }

    .pc__menu a {
        text-decoration: none;
        color: inherit;
    }
}

/* ==============
btn
============== */
.btn {
    display: block;
    position: relative;
}    

.btn__1 {
    display: block;
    text-align: center;
    background-color: var(--primary-yellow) ;
    color: var(--primary-black);
    font-family: Itim;
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: none;
    outline: none;
    overflow: hidden;
    padding: 19px 70px;
    width: 173px;
    height: 54px;
    border-radius: 20px;
    border: solid 1.5px #33302C;
    margin: 36px auto 0;
    transition :all 0.2s ease-in-out;
}

.btn__1:hover {
    opacity: 0.5;
} 

.about__btn__illust {
    display: block;
    width: 71px;
    height: 54px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10%;
}

/* ==============
flower
============== */
.flower__design {
    padding-top: 40px;
    position: relative;
    margin: 0 auto;
}

.flower {
    width: 100px;
}

.flower__design::before {
    content: "";
    display: block;
    width: 183px;
    height: 0;
    border-bottom: 1px solid var(--primary-black);
    position: absolute;
    top: 100px;
    right: 10px;
}

/* ==============
copy
============== */
.copy {
    text-align: center;
    color: var(--primary-black);
    font-family: Itim;
    font-size: 1.5rem;
    font-weight: 400;
}

/*=============
fadein
==============*/
.fadeIn {
    transform: translate(0,50px,0);
    transition: 1.5s;
    opacity: 0;
}

.fadeIn.animated {
    transform: translate(0,0);
    opacity: 1;
}

