@charset "UTF-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                      */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/* 　　　　　　　　　　　　　                                     */
/* Browsers: last 4 version                                     */
/* 　　　　　　　　　　　　　                                     */
/* ***** single styles *****                                    */
/* 　　　　　　　　　　　　　                                     */
/*--------------------------------------------------------------*/


body {
    overflow-y: scroll;
    -webkit-animation: fadein 1.5s ease-in-out 0s normal backwards;
    animation: fadein 1.5s ease-in-out 0s normal backwards;
}

@media only screen and (min-width: 992px) {

    body.active {
        width: calc(100% - 1.0rem);
    }

}

/*　PC時のスクロールバーのカスタマイズ
----------------------------------------------------------- */
body::-webkit-scrollbar,
#navigation .nav-scl::-webkit-scrollbar {
    width: 1.0rem;
}

body::-webkit-scrollbar-track,
#navigation .nav-scl::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 1.00);
}

body::-webkit-scrollbar-thumb,
#navigation .nav-scl::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
    background-color: rgba(215, 195, 180, 1.00);
}

/*　header
----------------------------------------------------------- */
header .inner {
    position: relative;
    width: 100%;
    height: 50.0vh;
    height: 50.0lvh;
    overflow: hidden;
}

header img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* 前面フィルター */
header .inner::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    content: "";
    z-index: 2;
}

header h2 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    color: rgba(255, 255, 255, 1.00);
    font-family: 'Fredericka the Great', cursive;
    font-weight: 400;
    font-size: min(12.0vw, 5.4rem);
    text-align: center;
    text-transform: capitalize;
    text-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 1.00), 0 -0.2rem 0.2rem rgba(250, 240, 225, 1.00);
    letter-spacing: 0.1rem;
    z-index: 3;
}

header h2 span {
    display: block;
}

@media only screen and (min-width: 768px) {

    header h2 {
        font-size: min(12.0vw, 7.2rem);
        text-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 1.00), 0 -0.2rem 0.2rem rgba(250, 240, 225, 1.00);
    }

    header h2 span {
        display: inline-block;
        margin-left: min(6.0vw, 3.0rem);
    }

}

@media only screen and (min-width: 992px) {

    header .inner {
        position: fixed;
        width: 50.0vw;
        height: 100vh;
        height: 100lvh;
    }

    header h2 {
        text-shadow: 0.4rem 0.4rem 0.5rem rgba(0, 0, 0, 1.00), 0 -0.25rem 0.25rem rgba(250, 240, 225, 1.00);
    }

    header h2 span {
        display: block;
        margin-left: 0;
    }

}

@media only screen and (min-width: 1920px) {

    header h2 {
        font-size: min(12.0vw, 10.0rem);
        text-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 1.00), 0 -0.25rem 0.25rem rgba(250, 240, 225, 1.00);
    }

    header h2 span {
        display: inline-block;
        margin-left: min(6.0vw, 3.0rem);
    }

}

/*　.notes
----------------------------------------------------------- */
.notes {
    padding: 1.5rem 2.0rem;
    border-radius: 1.0rem;
    background-color: rgba(250, 240, 225, 1.00);
}

.notes h5,
.notes p,
.notes ul {
    margin-bottom: 0;
    color: rgba(57, 16, 0, 1.00);
    text-align: justify;
}

.notes h5 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.notes li:nth-of-type(n+2) {
    margin-top: 1.5rem;
}

@media only screen and (min-width: 768px) {

    .notes {
        padding: 2.0rem 3.0rem;
    }

}

/*　.other
----------------------------------------------------------- */
section i {
    position: relative;
    margin-right: 0.5rem;
    color: rgba(57, 16, 0, 1.00);
}

section .bi-envelope-fill {
    top: 0.2rem;
}

section .bi-telephone-fill {
    top: 0.1rem;
}


/* ---- End of file --------------------------------------- */