@charset "utf-8";

/*変数の宣言*****************************/
:root {
    --duration: 0.3s;
    --page_back: #FFFFFF;
    /*--page_back: #d68f8f;*/
    --font_color: #000000;
}

/***************************************/
html {
    font-size: 62.5%;
    color: var(--font_color);
    background-color: var(--page_back);
    overflow-x: hidden;
}

body {
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
    font-feature-settings: "palt";
}

img {
    margin: 0;
    padding: 0;
    border-style: none;
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    display: inline;
}

img[src$=".svg"],
svg {
    width: 100%;
}

/*indent***************/
.indent {
    position: relative;
    overflow: hidden;
}

.indent .text {
    display: block;
    text-indent: 150%;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
}

/**********************/
/*youtube***/
.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0px auto 0px auto;
    position: relative;
    display: block;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    aspect-ratio: 16 / 9;
}

/**********************/