@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

/*common*/
.fade:hover {
    opacity: 0.5;
    transition: 0.5s;
}

.fo16{
    font-size: 16px;
}

.fo18 {
    font-size: 18px;
}
.pc-only{
    display: block;
}
.sp-ony{
    display: none;
}

@media screen and (max-width:768px) {
    .pc-only{
        display: none;
    }
    .sp-ony{
        display: block;
    }
}

/*=================================*/

body {
    background-color: #000000;
    color: #fff;
    font-family: 'Special Elite', cursive;
    font-size: 16px;
}


h2 {
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    display: block;
}


h3 {
    font-size: 24px;
}



@media screen and (max-width:1024px) {
    body {
        font-size: 14px;
    }

}


@media screen and (max-width:768px) {
    h2 {
        font-size: 18px;
    }

}


/*header*/

header .container {
    width: 800px;
    padding: 30px 0 0;
    margin: 0 auto;

}


.header_logo {
    margin-bottom: 30px;
    font-family: 'Special Elite', cursive;
    font-size: 40px;
    letter-spacing: 2px;
}

.pc-nav ul {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.pc-nav ul li {
    font-size: 18px;
    margin-right: 30px;
}

.pc-nav ul li:last-child {
    margin-right: 0;
    margin-left: auto;
}

.sp-nav {
    display: none;
}


@media screen and (max-width:830px) {
    header .container {
        width: 600px;
        padding: 30px 15px 0;
        margin: 0 auto;
    }
}

@media screen and (max-width:768px) {

    .header_logo {
        display: block;
    }



}


@media screen and (max-width:600px) {
    header .container {
        width: 100%;
        margin: 0 auto 2vh;
        padding: 0 15px;
    }

    .top .header_logo {
        display: none;
    }

    .portfolio .header_logo,
    .profile .header_logo,
    .contact .header_logo {
        display: block;
        font-size: 28px;
        margin-top: 3vh;
        margin-bottom: 0;
    }

    .pc-nav {
        display: none;
    }

    /*spナビ*/
    .sp-nav {
        display: block;
        position: relative;
        width: 100%;
    }


    /*ハンバーガーメニュー*/

    .btn-trigger {
        display: block;
        position: fixed;
        top: 3vh;
        right: 5%;
        width: 25px;
        height: 22px;
        transition: all .5s;
        cursor: pointer;
        z-index: 100;
    }

    .btn-trigger span {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        transition: all .5s;
    }

    .btn-trigger,
    .btn-trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }

    .btn-trigger span:nth-of-type(1) {
        top: 0;
    }

    .btn-trigger span:nth-of-type(2) {
        top: 10px;
    }

    .btn-trigger span:nth-of-type(3) {
        bottom: 0;
    }


    .btn-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }

    .btn-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .btn-trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-10px) rotate(45deg);
        transform: translateY(-10px) rotate(45deg);
    }

    .sp-nav > ul {
        background-color: rgba(0, 0, 0, 0.6);
        position: fixed;
        top: 0;
        right: -58%;
        width: 58%;
        max-width: 400px;
        height: 100vh;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 25%;
        transition: 0.3s;
        z-index: 50;
    }

    .sp-nav.active > ul {
        right: 0;
    }

    .sp-nav li {
        font-size: 18px;
        opacity: 1;
        margin-bottom: 22px;
    }

}


/*==================
top
==================*/

/*header*/
.top .sp-nav {
    height: 7vh;
}

/*main*/

.top main .container {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.pc-main {
    display: block;
    width: 100%;
    margin-bottom: 20px;

}

.tab-main {
    display: none;
}

.sp-main {
    display: none;
}

.main_logo {
    display: none;
}

@media screen and (max-width: 1024px) {

    .top main .container {
        width: 100%;
        margin-bottom: 10px;
    }

    .pc-main {
        display: none;
    }

    .tab-main {
        background-image: url(../images/top_main.jpg);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center center;
        height: 75vh;
        position: relative;
        display: block;
        width: 100%;
        margin-bottom: 3vh;
    }


    .sp-main {
        display: none;
    }

    .main_logo {
        display: none;
    }

}

@media screen and (max-width:600px) {
    .pc-main {
        display: none;
    }

    .tab-main {
        display: none;
    }


    .sp-main {
        display: block;
    }

    .sp-main figure {
        position: relative;
    }

    .sp-main figure .fit-img {
        width: 100%;
        height: 85vh;
        object-fit: cover;
        object-position: 75% 0%;
        font-family: 'object-fit: cover; object-position: 75% 0%;'
    }

    .sp-main figure .name {
        position: absolute;
        top: 45%;
        right: 5%;
        font-size: 40px;
        letter-spacing: 2px;
        text-align: center;
    }

}


/*footer*/
footer{
    margin-bottom: 20px;
}

footer p {
    text-align: center;
}


/*==================
under common
==================*/

.profile main,
.portfolio main,
.contact main{
    margin-top: 50px;
    margin-bottom: 100px;

}

.profile main .container,
.portfolio main .container,
.contact main .container{
    width: 800px;
    margin: 0 auto;
    padding: 0px;
}

@media screen and (max-width:1024px) {

    .profile main,
    .portfolio main,
    .contact main{
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width:768px) {

    .profile main .container,
    .portfolio main .container,
    .contact main .container{
        width: 600px;
        margin: 0 auto;
        padding: 0 15px;
    }

}
        
@media screen and (max-width:600px) {

    .profile main .container,
    .portfolio main .container,
    .contact main .container{
        width: 100% !important;
        padding: 0 15px !important;
    }
    
}


/*==================
profile
==================*/



.profile h3 {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS P Gothic", "ＭＳ Ｐゴシック", sans-serif;
    letter-spacing: 1.5px;
    margin-bottom: 50px;
}

.profile main section p {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS P Gothic", "ＭＳ Ｐゴシック", sans-serif;
    line-height: 2;
    margin-bottom: 30px;
}

.profile main section p:first-of-type {
    margin-bottom: 50px;
}

@media screen and (max-width:1024px) {



    .profile main section p {
        font-size: 14px;
        line-height: 1.5;
    }

}




/*==================
portfolio
==================*/




.portfolio main .container {
    clear: both;
}

/*
.grid li {
    max-width: 266.666667px;
}

.grid li img {
    max-width: 100%;
    height: auto;
}
*/

#wrapper {
  position: relative;
  max-width: 800px;

}
#container {
  width: 100% !important;
  position: relative;
}
.item {
  width: 200px;
}
.item.x2 {
  width: 400px;
}
.item img {
  width: 100%;
}


.sp-gallery {
    display: none;
}


@media screen and (max-width:1024px) {

    .portfolio main .container {
        width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }    
    .sp-gallery {
        display: none;
    }
}

@media screen and (max-width:768px) {


    #wrapper {
        display: none;
    }

    .sp-gallery {
        display: block;
        width: 100%;
    }

    .sp-gallery figure {
        margin-bottom: 20px;
    }

    .sp-gallery figure img {
        width: 100%;
    }

}

@media screen and (max-width:600px) {

    .grid {
        display: none;
    }

}

@media screen and (max-width: 460px) {
    .lum-lightbox-inner img {
        max-width: 160vw !important;
        /* 軽くスワイプで左端から右端まで動かせる量 */
        max-height: 85vh !important;
        /* 上下に適度に余白 */
    }
}

/*==================
contact
==================*/




.contact-form {
    padding: 0px;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS P Gothic", "ＭＳ Ｐゴシック", sans-serif;

}

.contact-form dl {
    margin-bottom: 20px;
}

.contact-form dl dt {
    margin-bottom: 10px;
    font-weight: normal;
}

.contact-form dl dd {
    width: 400px;
    background-color: #fff;
}

.contact-form dl:last-of-type dd {
    width: 100%;
    background-color: #fff;
    margin-bottom: 50px;
}


.contact form input[type="text"],
.contact form input[type="email"],
.contact form input[type="tel"] {
    width: 35rem;
    padding: 3px;
    color: #000;
}

.contact form textarea {
    width: 100%;
    height: 10rem;
    padding: 3px;
    color: #000;
}

.contact .otoiawase {
    margin-bottom: 50px;
}

.submit-wrap {
    display: flex;
    justify-content: flex-start;
}

.contact form input[type="submit"] {
    width: 150px;
    height: 50px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    text-align: center;
}

.shinko-wrap{
    margin-bottom: 30px;
}

.contact .c_shinko li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #999;
    border-radius: 10px;
    margin-right: 10px;

}

.contact .current_dot {
    background-color: #fff;
}




@media screen and (max-width:768px) {

    .contact-form {
        padding: 0;
    }

    .contact-form dl dd {
        width: 400px;
    }
    
    .submit-wrap {
    display: flex;
    justify-content: center;
    }

}

@media screen and (max-width:600px) {

    .contact-form dl dd {
        width: 100%;
    }

    .contact form input[type="text"],
    .contact form input[type="email"],
    .contact form input[type="tel"] {
        width: 100%;
    }

}

/*==================
contact/check
===================*/

.check-nakami{
    padding: 0 10px;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS P Gothic", "ＭＳ Ｐゴシック", sans-serif;
}

.check dl {
    margin-bottom: 30px;
}

.check dl dt {
    padding-bottom: 10px;
}

.check dl dd {
    width: 35rem;
    font-size: 14px;
}

.check .back {
    display: flex;
    justify-content: flex-start;
}

.check form input[type="submit"],
.check button {
    width: 150px;
    height: 50px;
    margin-right: 10px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}



@media screen and (max-width:768px) {
    .check .back {
    display: flex;
    justify-content: center;
    }
}

@media screen and (max-width:600px) {

    .kakunin {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .check dl dd {
        width: 100%;
    }
}


/*==================
contact/send
===================*/

.send-nakami{
    padding: 0 10px;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS P Gothic", "ＭＳ Ｐゴシック", sans-serif;
}

.send p {
    line-height: 2;
}



