@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

html,body {
    overflow-x: hidden;
}

/*背景アニメーション*/
#particles-js{ 
    overflow: hidden;
    position:fixed;/*描画固定*/
    width: 100vw;
    height: 100vh;
    background-color:#F1F1F1;
    z-index: -1;
}

/*右側の固定メニュー*/
#fixed_nav {
    transition: all 1000ms;
    position: fixed;
    z-index: 0;
    top: 120px;
    left: 5vw;
}
#fixed_nav ul {
    list-style: none;
    padding: 0;
}
#fixed_nav ul li {
    margin-bottom: 24px;
    border-bottom: 1px solid #999999;
    padding-bottom: 16px;
}
#fixed_nav ul li a {
    text-decoration: none;
    font-size: 24px;
    color: #333;
    font-weight: 900;
}
#fixed_nav ul li a span {
    font-weight: 800;
    display:block;
    font-size: 16px;
    opacity: 0;
    transform: translateX(-8em);
    transition: 500ms;
}
#fixed_nav ul li a:hover span {
    opacity: 1;
    transition: 500ms;
    transform: translateX(0em);
}
@media(max-width:1000px) {
    #fixed_nav {
        display: none;
    }
}

.scroll {
    width: 100vw;
    position: absolute;
    z-index: 0;
    display: flex;
    justify-content: center;
    bottom: 20px;
    left: 0;
    right: 0;
    animation: firstview_scroll-move 3s infinite;
}

@keyframes firstview_scroll-move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*TOP戻るボタン*/
#topbutton {
    position: fixed;
    z-index: 2;
    bottom: 20px;
    right: 2vw;
}
/*ヘッダー*/
.header-SP {
    display: none;
}
.header-container {
    z-index: 1;
    overflow: hidden;
    position: relative;
}
.header {
    box-shadow: 0px 5px 10px #33333367;
    background-color: #ffffffc5;
    z-index: 1;
    position: fixed;
    display: flex;
    width: 100vw;
    justify-content: space-between;
    align-items: center;
    top: 0px;
}
.header ul {
    padding: 0;
    display: flex;
    list-style: none;
}
.header h1 {
    padding: 0.2em 0 0.2em 0.5em ;
    width: calc(20vw + 210px);
}
.header h1 span {
    display: block;
    font-size: 18px;
}
.header ul li {
    margin-right: calc(10vw - 80px);
}
.header ul li a {
    display: inline-block;
    position: relative;
    font-size: 20px;
    text-decoration: none;
    color: #333;
    letter-spacing: 2px;

}



.header ul li a::after,
.header ul li a::before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #ee2d7b;
	transition: .3s;
    position: absolute;
}
.header ul li a::before {
	top: 0;
	left: 0;
}
.header ul li a::after {
	bottom: 0;
	right: 0;
}
.header ul li a:hover::before,
.header ul li a:hover::after {
	width: 100%;
}


#header.UpMove{
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
    from {
    opacity: 1;
    transform: translateY(0);
    }
    to {
    opacity: 0;
    transform: translateY(-100px);
    }
}

#header.DownMove{
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
    from {
    opacity: 0;
    transform: translateY(-100px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}
.firstview {
    backdrop-filter: blur(2px);
    height: 100vh;
    background-color: rgba(231, 231, 231);
}
.firstview h1 {
    letter-spacing: 4px;
    font-size: 60px;
    padding: 120px 0 0 5vw;
}
.firstview h1 span:nth-child(1) {
    display: inline-block;
    animation: title_move01 1s forwards ease-in;
}
.firstview h1 span:nth-child(2) {
    display: inline-block;
    animation: title_move02 1s forwards ease-in;
}
@keyframes title_move01 {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    20% {
        opacity: 0;
        transform: translateY(-100px);
    }
    40% {
        opacity: 0;
        transform: translateY(-100px);
    }
    60% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes title_move02 {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    20% {
        opacity: 0;
        transform: translateY(100px);
    }
    40% {
        opacity: 0;
        transform: translateY(100px);
    }
    60% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
.firstview h2 {
    padding: 0 0 0 5vw;
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10em);
    animation: title_move03 1.1s forwards ease-in;
    animation-delay: 1s;
}
@keyframes title_move03 {
    0% {
        opacity: 0;
        transform: translateX(-10em);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@media(max-width:1000px) {
    .header ul {
        display: none;
    } 
    .header h1 {
        padding:0.5em;
        width: 350px;
    }
    .header h1 span {
        font-size: 14px;
    }
}

.contact {
    width: 80vw;
    margin: 180px 0  40px auto;
}
.contact h1 {
    font-size:68px;
    letter-spacing: 8px;
    margin-bottom: 40px;
    color: #333;
}
.contact h1 span {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
}
.contact p {
    width: 70vw;
    margin: 0 0 80px auto;
}

.contact_button {
    text-align: center;
    padding: 0;
    margin: 120px auto;
}
.contact_button a {
    transition: all 500ms;
    font-weight: 900;
    text-decoration: none;
    color: #333;
    font-size: 22px;
    padding: 2em 5em;
    background-color: #ff5f15c9;
    box-shadow: rgba(0, 0, 0, 0.3) 2px 8px 8px;
    border: 1px rgba(255,255,255,0.4) solid;
    border-bottom: 1px rgba(40,40,40,0.35) solid;
    border-right: 1px rgba(40,40,40,0.35) solid;
}
.contact_button a:hover {
    transition: all 500ms;
    border-radius: 20px;
    background-color:#ff5f15 ;
}
.contact-tell {
    text-align: center;
    margin: 0px auto 120px;
}
.contact-tell h3 {
    font-size: 18px;
    line-height: 32px;
}
footer {
    overflow: hidden;
    background-color: #D9D9D9;
}

footer small {
    display: block;
    text-align: center;
    padding: 80px 0 16px ;
}
.footer_logo {
    padding: 80px 0 0 0 ;
    width: 480px;
    text-align: center;
    margin: 0 auto;
}

@media(max-width:1000px) {
    .header-SP {
        display: block;
    }
    .menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        height: 50px;
        width: 50px;
        border-radius: 50px;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        transition: all 300ms;
        content: '';
        display: block;
        height: 2px;
        width: 25px;
        border-radius: 3px;
        background-color: #272727;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
        transition: all 300ms;
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
        transition: all 300ms;
    }
    #menu-btn-check {
        display: none;
    }
    .menu-content ul {
        padding: 120px 32px;
        margin: 0;
    }
    .menu-content ul li {
        border-bottom: solid 1px #ffffff;
        list-style: none;
        padding-bottom: 24px;
        margin-bottom: 24px
    }
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color:#ffffff;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        position: relative;
    }
    .menu-content ul li a::before {
        content: "";
        width: 7px;
        height: 7px;
        border-top: solid 2px #ffffff;
        border-right: solid 2px #ffffff;
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 16px;
    }
    .menu-content {
        width: 86vw;
        height: 100%;
        position: fixed;
        top: 0;
        right: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 5;
        background-color: #bdbdbde1;
        transition: all 0.5s;/*アニメーション設定*/
    }
    #menu-btn-check:checked ~ .menu-content {
        right: 0;/*メニューを画面内へ*/
    }
    .contact {
        width: 95vw;
        max-width: 520px;
        margin: 0 auto;
    }
    .contact h1 {
        font-size: 32px;
        letter-spacing: 4px;
        margin-bottom: 40px;
        color: #333;
    }
    .contact h1 span {
        display: block;
        margin-top: 0px;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0px;
    }
    .contact p {
        width: 100%;
        margin: 0 auto;
    }
    .contact_button {
        width: 100%;
        margin: 80px auto;
        text-align: center;
    }
    .contact_button a {
        padding: 2em;
        font-size: 18px;
    }
    .footer_logo {
        padding: 40px 0 0 0 ;
        width: 95vw;
        max-width: 400px;
        text-align: center;
        margin: 0 auto;
    }
    .footer_logo img {
        width: 95vw;
        max-width: 400px;
    }
    .firstview {
        height: 100vh;
        background-color: transparent;
    }
    .firstview h1 {
        line-height: 36px;
        letter-spacing: 0px;
        font-size: 38px;
        padding:120px 5vw 0px;
    }
    .firstview h2 {
        font-size: 14px;
        padding-top: 8px;
        padding-bottom: 40px;
        letter-spacing: 0px;
    }

}

.nav-price {
    display: none;
}
