@charset "UTF-8";

html {
    font-size: 100%;
}
body {
    font-family: "FOT-Seurat ProN", "FOT-スーラ ProN", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", sans-serif;
    background-color: #fffcdb;
}
a {
    text-decoration: none;
}

/* HEADER */

.header-main {
    background-image: url(../images/oichiomochi.png);
    background-size: cover;
}

.logo {
    width: 60px;
    margin-top: 11px;
    margin-left: 35px;
}

.main-nav {
    display: flex;
    font-size: 24px;
    margin-top: 13px;
    list-style: none;
    height: 10vh;
}

.main-nav li {
    margin-left: 5px;
    margin-right: 35px;
}

.main-nav a {
    color: #fff;
}

.main-nav a:hover {
    color: #f69494;
}

.main-nav img {
    width: 40px;
}

.page-header {
    display: flex;
    justify-content: space-between;
}

/* main */

/* first view */
.main {
    display: flex;
    align-items: flex-end;
    height: 90vh;
}

h2 {
    color: #fff;
    font-size: 48px;
}

.catchphrase {
    color: #fff;
    padding-left: 40px;
    padding-bottom: 40px;
}

h3 {
    color: #52372f;
    font-size: 36px;
    padding-top: 100px;
    text-align: center;
}

.about p {
    color: #52372f;
    font-size: 24px;
    line-height: 48px;
    padding-top: 20px;
    padding-bottom: 100px;
    text-align: center;
}

/* instagram */
.instagram {
    background-color: #f8c6bd;
    padding-bottom: 100px;
}

.instagram h3 {
    color: #fff;
    padding-bottom: 30px;
}

.gohan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 5%;
}

.undou {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 1% 5%;
}

.otoriyose {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 5%;
}

.kyounogohan {
    padding-left: 10%;
}

.undounokiroku {
    padding-right: 10%;
}

.otoriyoseshoukai {
    padding-left: 10%;
}

/* APPAREL */
.apparel h3 {
    padding-bottom: 30px;
}
.slider{
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.slider__content{
    min-width: 100%;
    animation: sliderAnime 12s ease-in-out infinite;
}

@keyframes sliderAnime{
    0%{

    }
    16.6%{
        transform: translateX(0);
    }
    33.3%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-100%);
    }
    66.6%{
        transform: translateX(-200%);
    }
    83.2%{
        transform: translateX(-200%);
    }
    100%{
        transform: translateX(0);
    }
} 

.slider__img{
    max-width: 80%;
    min-width: 80%;
    padding-left: 20%;
}

.apparel p {
    color: #fff;
    background-color: #f69494;
    width: 10em;
    margin:0 auto;
    padding: 5px 10px;
    border-radius: 30px;
    margin-top: 30px;
    margin-bottom: 100px;
}

.page-footer img {
    width: 360px;
}

.footer-menu img {
    width: 40px;
}

.page-footer {
    color: #fff;
    background-color: #f8c6bd;
    display: flex;
    justify-content: space-between;
    height: 480px;
}

.contact {
    margin: 100px 35px;
}

.insta-logo {
    margin: 35px;
}

.copyright {
    margin: 100px 35px 30px 35px;
}