
html {
    width: 100%;
    height: auto;
    text-align: center;
    overflow-y: auto;
}

body {
    width: 100%;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 100;
    font-style: normal;
    line-height: 1.7vw;
}


.kiwi-maru-regular {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
}

/* text */
.s-text-blue {
    color: var(--theme1);
    text-decoration: none;
}

.s-text-orange {
    color: var(--theme3);
    text-decoration: none;
}

.another-page-link{
    font-size: small;
}

/* arrow */
.s-up-arrow {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.095em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(25%) rotate(-45deg);
}

/* arrow */
.s-up-arrow2 {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.095em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(0deg);
}

/* arrow */
.s-down-arrow {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.095em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
}

/** Button Style **/
.s-button {
    width: auto;
    height: fit-content;
    display: block;
    color: #333333;
    background-color: #FFFFFF;
    border: #333333 solid 0.25vw;
    border-radius: 50px;
    box-shadow: 0.4em 0.4em 1px #33333380;
    padding: 0.6em 1em 0.6em 1.5em;
    user-select: none;
    text-decoration: none;
    top: 0px;
    left: 0px;
}

.s-button:hover {
    box-shadow: 0.1em 0.1em 1px #33333380;
    position: relative;
    top: 0.3em;
    left: 0.3em;
    transition: all 0.03s ease;
}

.s-button > p {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 5vw;
    font-size: max(1vw, 11px);
}

.s-button:hover {
    box-shadow: 0px;
}

.s-button > p > span {
    width: 0.7em;
    height: 0.7em;
}

.s-button-orange {
    box-shadow: 0.4em 0.4em 1px var(--bt2);
}

.s-button-blue {
    box-shadow: 0.4em 0.4em 1px var(--bt1);
}

/* smartphone */
@media screen and (max-width: 800px) {

    .s-button {
        width: 80%;
        margin-top: 5vh;
        margin-bottom: 5vh;
        padding: 1em 1em 1em 1.5em;
    }

    .s-button > p {
        font-size: small;
    }

}

/** H2 Style **/
H2 {
    font-size: 1.7vw;
    font-weight: normal;
    font-style: normal;
}

/** H3 Style **/
H3 {
    font-size: 1.5vw;
    font-weight: normal;
    font-style: normal;
}

.s-list-style3:before {
	content:'●';
	color: #000000;
}



/* smartphone */
@media screen and (max-width: 800px) {

    H3 {
        font-size: medium;
    }

    H4 {
        font-size: small;
    }

}

/** H4 Style **/
H4 {
    font-size: 1.2vw;
    font-weight: normal;
    font-style: normal;
}

.s-list-style4:before {
	content:'●';
	color: #000000;
}

/** list **/
ul {
    text-align: left;
    font-size: 1.1vw;
}

ul li::marker {
    color: #000000;
    font-size: 0.6rem;
}

ul li {
    text-indent: -0.3em;
}

/* smartphone */
@media screen and (max-width: 800px) {

    ul {
        font-size: small;
        margin: 0 auto;
    }

    ul li::marker {
        font-size: 5px;
    }

    ul li {
        text-indent: -0.3em;
    }

}

/** tooltip **/
.bubble-top {
    position: relative;
    display: inline-block;
    margin: 1.3em 0;
    padding: 0.5em;
    text-wrap: nowrap;
    min-width: min-content;
    max-width: 100%;
    font-size: 16px;
    border-radius: 7px;
    text-align: center;
    background: var(--theme2);
    user-select: none;
}

.bubble-top:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 10%;
    border: 5px solid transparent;
    border-bottom: 25px solid var(--theme2);
}

.bubble-top p {
    margin: 0;
    padding: 0;
}


/* smartphone */
@media screen and (max-width: 800px) {

    .bubble-top {
        padding: 0.5rem 1.5vw;
        margin: -0.5em 0 0em 2em;
        box-sizing: border-box;
    }

    .bubble-top:before {
        content: none;
    }

    .bubble-top:after {
        content: "";
        position: absolute;
        top: 3.3vh;
        left: -3em;
        margin-top: -14px;
        border: 1em solid transparent;
        border-right: 3em solid var(--theme2);
        z-index: 1;
    }

    .bubble-top p {
        font-size: x-small;
    }
}