@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: #ed1e79;
}
/* body */
body {
    background-color: #35b9c024;
    font-family: "Klee One", cursive;
    font-weight: 500;
    font-style: normal;
}
body h2 {
    text-align: center;
    font-size: 35px;
    padding: 50px 0 30px;
}
/* header */
.sp-header .ham {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 50px;
    right: 20px;
    background-color: #35b9c0;
    padding: 0 10px;
    z-index: 999999;
}
/* ハンバーガーメニュー */
.sp-header .ham span {
    width: 100%;
    height: 5px;
    background: #fff;
    display: block;
    transition: 0.7s;
}
/* ハンバーガーメニュー click後のスタイル */
.ham.active span:nth-child(1) {
    transform: translateY(21px) rotate(45deg);
}
.ham.active span:nth-child(2) {
    opacity: 0;
}
.ham.active span:nth-child(3) {
    transform: translateY(-21px) rotate(-45deg);
}
/* nav */
.top-nav {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    opacity: 0;
    transition: 0.7s;
    pointer-events: none;
}
.top-nav.active {
    opacity: 1;
    z-index: 888888;
    pointer-events: all;
}
.top-nav ul {
    text-align: center;
    color: #ed1e79;
    padding: 30px 0;
    margin: 5px 5px 0 0;
}
.top-nav ul li {
    font-size: 35px;
    font-weight: bolder;
    padding: 30px 0;
    display: block;
    width: 250px;
    border-top: 3px solid #ed1e79;
}
.top-nav ul .nav-instagram {
    display: block;
    width: 250px;
    margin: 20px auto 0;
    border-bottom: 3px solid #ed1e79;
}
.pc-header {
    display: none;
}
@media screen and (min-width: 600px) {
    .sp-header {
        display: none;
    }
    .top-nav.active {
        opacity: 0;
        z-index: 0;
    }
    .pc-header {
        display: block;
        width: 100%;
        height: 70px;
        padding: 5px 0 0;
    }
    .pc-header .pc-nav ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
    }
    .pc-header .pc-nav ul li {
        margin-left: 30px;
        font-size: 18px;
        display: block;
    }
    .pc-header .pc-nav ul .nav-instagram a img {
        width: 75%;
        padding: 0 20px 0 0;
    }
}
/* hero */
#hero {
    background-repeat: no-repeat;
    background-size: cover;
    width: 95%;
    height: 600px;
    margin: 20px auto 0;
    transition: 3s;
    animation: top 15s infinite forwards;
}
@keyframes top {
    0% {
        background-image: url(../img/top-sp1.png);
        background-size: cover;
    }
    40% {
        background-image: url(../img/top-sp2.png);
        background-size: cover;
    }
    100% {
        background-image: url(../img/top-sp1.png);
        background-size: cover;
        background-position: left;
    }
}
#hero h1 img {
    padding-top: 400px;
    width: 98%;
    margin: 0 auto;
}
@media screen and (min-width: 600px) {
    #hero {
        width: 98%;
        height: 700px;
        margin: 0 auto;
    }
    @keyframes top {
        0% {
            background-image: url(../img/top-pc1.png);
            background-size: cover;
        }
        40% {
            background-image: url(../img/top-pc2.png);
            background-size: cover;
        }
        100% {
            background-image: url(../img/top-pc1.png);
            background-size: cover;
            background-position: top;
        }
    }
    #hero h1 img {
        display: block;
        width: 55%;
        padding-top: 200px;
        margin-left: 600px;
    }
}
/* main */
main {
    width: 80%;
    margin: 0 auto;
}
#profile,
#gallery,
#footer-top {
    padding-top: 50px;
}
/* profile */
#profile .profile-top {
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 20px;
    margin-bottom: 20px;
}
#profile .profile-photo {
    animation: left-photo 3s 1 forwards;
}
@keyframes left-photo {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
#profile .profile-photo img {
    width: 90%;
    margin: 0x auto 20px;
}
#profile .profile-top,
.profile-about {
    font-size: 16px;
    padding-bottom: 50px;
    animation: go-photo 3s 1 forwards;
}
@keyframes go-photo {
    0% {
        transform: translateY(300px);
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
#profile .profile-about .blue {
    color: #2606d3;
    font-weight: bold;
}
#profile .profile-about .mast-profile {
    text-align: center;
    padding: 30px 0;
    font-weight: bold;
    text-decoration: underline;
}
@media screen and (min-width: 600px) {
    .flex-profile {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #profile .profile-photo,
    #profile .profile-text {
        width: 48%;
    }
    #profile .profile-top {
        font-size: 35px;
        font-weight: bold;
        padding: 0 0 10px;
    }
    #profile .profile-about .mast-profile {
        text-align: right;
        font-size: 24px;
    }
}
/* gallery */
#gallery h3 {
    text-align: center;
    padding: 10px 5px;
    font-size: 15px;
}
#gallery .flex-gallery .vn,
#gallery .flex-gallery .oa,
#gallery .flex-gallery .name,
#gallery .flex-gallery .pepar,
#gallery .flex-gallery .rogo,
#gallery .menu {
    width: 90%;
    margin: 30px auto;
    padding: 10px;
    background-color: #fff;
}
#gallery .vn img {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}
#gallery .oa h3 span {
    font-size: 13px;
}
#gallery .oa .oa-box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 0 5px;
}
.oa-pc {
    width: 55%;
    padding-bottom: 30px;
    margin-top: 0;
}
.oa-sp {
    width: 40%;
    padding-top: 80px;
}
#gallery .name .name-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
#gallery .name .name-box img {
    width: 45%;
}
#gallery .rogo .rogo-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
#gallery .rogo .rogo-box img {
    display: block;
    width: 45%;
}
#gallery .pepar .pepar-box img {
    display: block;
    width: 80%;
    padding: 10px;
    margin: 0 auto;
}
#gallery .menu {
    width: 90%;
    margin: 30px auto;
    padding: 10px;
    background-color: #fff;
}
#gallery .menu img {
    display: block;
    width: 90%;
    margin: 20px auto;
    padding: 20px 0 0;
}
#gallery .mast-gallery {
    text-align: center;
    padding: 30px 0;
    font-weight: bold;
    text-decoration: underline;
}
@media screen and (min-width: 600px) {
    #gallery .flex-gallery {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #gallery .flex-gallery .vn,
    #gallery .flex-gallery .oa,
    #gallery .flex-gallery .name,
    #gallery .flex-gallery .rogo,
    #gallery .flex-gallery .pepar,
    #gallery .menu {
        width: 40%;
        padding: 20px;
    }
    .oa-pc {
        width: 55%;
        padding-bottom: 30px;
        margin-top: 0;
    }
    .oa-sp {
        width: 40%;
        padding-top: 150px;
    }
    #gallery .menu img {
        width: 80%;
        margin: 50px auto 0;
    }
    #gallery .mast-gallery {
        text-align: right;
        font-size: 24px;
    }
}
/* footer-top */
#footer-top .footer-name {
    font-size: 35px;
    padding-bottom: 5px;
}
#footer-top .footer-top-about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding-bottom: 20px;
}
.footer-instagram a img {
    width: 50px;
}
#footer-top .footer-top-nav nav ul {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    font-size: 17px;
    font-weight: bold;
}
@media screen and (min-width: 600px) {
    #footer-top .footer-name {
        font-size: 45px;
        padding-bottom: 15px;
    }
    #footer-top {
        width: 60%;
        margin: 0 auto 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #footer-top .footer-top-about {
        padding-bottom: 0;
        margin-bottom: 10px;
    }
    .footer-instagram a img {
        width: 60%;
        padding-top: 110px;
        padding-left: 10px;
    }
    #footer-top .footer-top-nav nav ul {
        display: block;
        font-weight: normal;
        padding-bottom: 0;
    }
    #footer-top .footer-top-nav nav ul li {
        padding: 10px 0 0;
    }
}
/* footer */
footer {
    background-color: #35b9c0;
    text-align: center;
    padding: 5px 0;
}
/* skill */
.skill-sp {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 50px;
}
.skill-sp h1 {
    text-align: center;
    font-size: 24px;
    padding: 30px 0 30px 10px;
    margin-top: 30px;
    font-weight: normal;
}
.skill-sp h2 {
    font-size: 25px;
    padding: 5px 0;
    text-align: center;
    font-weight: normal;
    width: fit-content;
    margin: 30px auto;
}
.skill-sp h2::before {
    content: "『 ";
    font-size: 1.2em;
}
.skill-sp h2::after {
    content: " 』";
    font-size: 1.2em;
}
.skill-box {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 5px;
}
.skill-box .wook-box {
    margin: 10px;
    padding: 5px;
}
.skill-box .wook-cooding,
.skill-box .wook-irare,
.skill-box .wook-photo {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
}
.skill-box .wook-cooding {
    background-image: url(../img/skill-web1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: go-wook 4s 1 forwards;
}
.skill-box .wook-irare {
    background-image: url(../img/skill-web2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: go-wook 5s 1 forwards;
}
.skill-box .wook-photo {
    background-image: url(../img/skill-web3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: go-wook 6s 1 forwards;
}
@keyframes go-wook {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.skill-sp h3 {
    font-size: 20px;
    margin: 10px auto;
    text-align: center;
    font-weight: normal;
    border-bottom: #ed1e79 1px solid;
    width: fit-content;
    animation: left-photo 3s 1 forwards;
}
@keyframes left-photo {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.wook-ok {
    padding: 0 5px;
}
.skill-sp p {
    font-size: 15px;
    padding: 10px;
    margin: 12px;
    line-height: 1.6;
    background-color: #ffffffa3;
    width: fit-content;
    font-weight: bold;
}
.skill-sp .back {
    text-align: center;
    font-size: 35px;
    margin: 50px 0 0;
    background-color: #ffffff00;
    font-weight: 600;
}
@media screen and (min-width: 600px) {
    .skill-sp h1 {
        font-size: 48px;
        padding: 50px 0;
    }
    .skill-sp h2 {
        font-size: 30px;
        padding: 5px 0;
        margin: 50px auto;
    }
    .skill-box .wook-box {
        display: flex;
        justify-content: space-between;
        height: 250px;
    }
    .skill-box .wook-cooding {
        background-size: contain;
    }
    .skill-box .wook-irare {
        background-size: contain;
    }
    .skill-box .wook-photo {
        background-size: contain;
    }
    .skill-sp h3 {
        margin: 0 auto;
        text-align: right;
        border-bottom: none;
        width: 40%;
        padding-top: 3%;
    }
    .skill-sp h3::after {
        content: "：";
        font-weight: 600;
    }
    .wook-ok {
        padding: 0 50px;
    }
    .skill-sp p {
        font-size: 19px;
        margin: 15px;
        font-weight: normal;
    }
    .skill-sp .back {
        margin-left: 60%;
    }
}
/* three */
.three-sp {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 50px;
    font-weight: 600;
}
.three-titol {
    text-align: center;
    font-size: 24px;
    padding: 30px 0 30px 10px;
    margin-top: 30px;
    font-weight: normal;
}
.three-sp h2 {
    font-size: 20px;
    font-weight: normal;
    padding: 20px 0 0;
}
.three-sp p {
    font-size: 13px;
    padding: 10px;
    margin: 15px;
    line-height: 1.6;
    background-color: #ffffffa3;
    width: fit-content;
}
.three-box {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 5px;
}
.three-sp .cafe,
.three-sp .turkey,
.three-sp .darabka {
    margin: 20px;
    padding: 5px;
}
.three-sp .cafe {
    background-image: url(../img/cafe.png);
    background-repeat: no-repeat;
    background-size: cover;
    animation: go-three 3s 1 forwards;
}
.skill-box .wook-irare {
}
.three-sp .turkey {
    background-image: url(../img/toruko.png);
    background-repeat: no-repeat;
    background-size: cover;
    animation: go-three 5s 1 forwards;
}
.skill-box .wook-irare {
}
.three-sp .darabka {
    background-image: url(../img/drb.png);
    background-repeat: no-repeat;
    background-size: cover;
    animation: go-three 7s 1 forwards;
}
@keyframes go-three {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.skill-box .wook-irare {
}
.three-sp .back {
    text-align: center;
    font-size: 35px;
    margin: 50px 0 0;
    background-color: #ffffff00;
    font-weight: 600;
}
@media screen and (min-width: 600px) {
    .three-sp {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        font-weight: 500;
    }
    .three-sp main {
        width: 70%;
        margin-top: 50px;
    }
    .three-titol {
        text-align: left;
        writing-mode: vertical-rl;
        font-size: 48px;
        padding: 50px 0 0 30px;
    }
    .three-sp .cafe,
    .three-sp .turkey,
    .three-sp .darabka {
        display: flex;
        justify-content: space-between;
    }
    .three-sp .cafe {
        background-image: url(../img/cafe.png);
        background-size: contain;
        background-position: center;
    }
    .three-sp .turkey {
        background-image: url(../img/toruko.png);
        background-size: contain;
        background-position: center;
    }
    .three-ritht {
        text-align: right;
    }
    .three-sp .darabka {
        background-image: url(../img/drb.png);
        background-size: contain;
        background-position: center;
    }
    .three-sp .back {
        margin-left: 60%;
    }
}
/* art */
.onecafe,
.aqalium,
.green,
.orange,
.cat {
    padding: 20px 0;
    margin-bottom: 20px;
}
.art-sp h1 {
    text-align: center;
    font-size: 35px;
    padding: 50px 0 30px;
}
.art-box {
    background-color: #fff;
    margin: 0 auto 30px;
    padding: 5px;
}
.art-box h2 {
    text-align: center;
    font-size: 16px;
    padding: 10px;
}
.art-box h3 {
    text-align: right;
    padding: 10px 20px 30px 5px;
    font-size: 24px;
}
.art-text .blue {
    font-size: 30px;
    font-weight: bold;
    padding-left: 20px;
}
.art-text .blue a {
    display: block;
    color: #2506d3;
    border-left: #2506d3 5px ridge;
    border-bottom: #2506d3 5px double;
    text-align: center;
    width: 200px;
}
.art-text .blue a:hover {
    opacity: 0.5;
    transition: 0.5s;
    font-size: 105%;
    width: 250px;
}
dl {
    margin: 20px;
    padding: 5px;
    line-height: 1.6;
}
dt {
    border-bottom: #ed1e79 1px solid;
    width: fit-content;
}
dd {
    padding: 10px 0 5px;
}
.onecafe img {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}
.aqalium .oa-box {
    display: flex;
    justify-content: space-evenly;
}
.aqalium .oa-box.oa-pc,
.aqalium .oa-box.oa-sp {
    width: 40%;
}
.green .name-box {
    display: flex;
    justify-content: space-evenly;
}
.green .name-box img {
    width: 35%;
}
.orange .rogo-box {
    display: flex;
    justify-content: space-evenly;
}
.orange .rogo-box img {
    width: 45%;
}
.yoga .art-box h3 {
    text-align: center;
    margin: 20px 0 0;
    padding: 10px;
}
.yoga .hot {
    margin: 0 auto 20px;
}
.yoga .hot .original img {
    display: block;
    width: 35%;
    margin: 0 auto;
    padding: 5px;
    background-color: #35b9c035;
}
.yoga .hot .flex-lookup {
    width: 90%;
    margin: 30px 0;
}
.yoga .lookup-box {
    display: flex;
    justify-content: space-evenly;
    width: 95%;
    flex-wrap: wrap;
}
.yoga .hot .lookup-box img {
    width: 45%;
    margin: 3px;
    padding: 5px;
    background-color: #35b9c035;
}
.look-mokup {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 20px;
}
.look-mokup .yoga-mokup {
    display: block;
    width: 85%;
    padding-bottom: 30px;
}
.art-box .menu-box {
    display: flex;
    justify-content: space-center;
    align-items: center;
    padding: 20px 0 10px;
    flex-wrap: wrap;
}
.art-box .menu-box img {
    width: 30%;
    margin: 3px;
}
.art-box .menu-mokup {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 20px;
}
.art-sp .back {
    text-align: center;
    font-size: 35px;
    margin: 50px 0;
    font-weight: 600;
}
@media screen and (min-width: 600px) {
    .art-box h2 {
        font-size: 23px;
        padding: 30px 0 10px;
    }
    .onecafe,
    .aqalium,
    .green,
    .orange {
        display: flex;
        justify-content: space-between;
    }
    .onecafe .art-box,
    .art-text,
    .aqalium .art-box,
    .art-text,
    .green .art-box,
    .art-text,
    .orange .art-box,
    .art-text {
        width: 45%;
    }
    .yoga .hot {
        display: flex;
    }
    .yoga .hot .original {
        width: 30%;
        margin: 10% 0 0;
        padding-right: 5%;
    }
    .yoga .hot .original img {
        width: 90%;
    }
    .yoga .hot .flex-lookup {
        width: 70%;
        margin: 0;
    }
    .yoga .hot .lookup-box img {
        width: 30%;
    }
    .look-mokup {
        display: flex;
        justify-content: space-evenly;
    }
    .look-mokup .yoga-mokup {
        display: block;
        width: 45%;
    }
    .art-box .menu-box {
        padding-bottom: 10px;
    }
    .art-box .menu-box img {
        width: 18%;
        padding: 0 20px 10px;
    }
    .art-box .menu-mokup {
        display: block;
        width: 60%;
    }
    .art-sp .back {
        margin-left: 60%;
    }
}
/* ページトップ ボタン*/
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 80px;
    width: 80px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    position: fixed;
    right: 20px;
    bottom: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: page 24s 1 forwards;
}
@keyframes page {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.pagetop-arrow {
    height: 60px;
    width: 60px;
    font-weight: bold;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: #35b9c085;
}
.pagetop-arrow p {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding-top: 16px;
    padding-left: 3px;
}
@media screen and (min-width: 600px) {
    .pagetop {
        height: 100px;
        width: 100px;
        right: 80px;
        bottom: 50px;
    }
    .pagetop-arrow {
        height: 80px;
        width: 80px;
    }
    .pagetop-arrow p {
        font-size: 20px;
        padding-top: 25px;
    }
}
