@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Limelight&display=swap');

/* 基本設定 */
html, body {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    font-size: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
}

body {
    background-color: #F5EEEE;
}

a {
    color: #AF05AA;
    outline:none;
}
a:link,a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
    
img {
    vertical-align: text-bottom;
}

address {
    clear: both;
    text-align: center;
    font-size: small;
    line-height: 2;
    color: #171313;
}
/* ここまで--基本設定 */

/* header */
header {
    width: 100%;
    margin: 0;
    display: grid;
}
/* header画像 */
.top-img {
    display: grid;
    background-position: center top;
    background-size: cover;
    width: 100%;
    height: 280px;
    background-image: url('https://conts.tottoism.com/assets/imgs/topimage.webp');
}

#title_string {
    margin: auto;
    font-family: "Limelight", sans-serif;
    font-style: normal;
    font-size: xxx-large;
    color: #FFF;
    white-space: nowrap;
    overflow: hidden;
    animation: blink-caret 0.7s step-end infinite;
}
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #333; }
}

#script-error {
    display: flex;
    width: 90%;
    justify-content: center;
    margin: 50px auto;
    border-bottom: 1px solid #EA21A2;
}

#fork-container {
    display: none;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.fork-s_box {
    width: 90%;
    border-bottom: 1px solid #EA21A2;
    text-align: center;
    line-height: 2.5;
}

.fork-c_box {
    width: 240px;
    border-radius: 10px;
    border-left: 2px solid #171313;
    border-top: 2px solid #171313;
    border-right: 3px solid #171313;
    border-bottom: 3px solid #171313;
    text-align: center;
    line-height: 2.5;
}

.footer_frame_container {
    margin: 0 auto;
    background-color: #EA21A2;
    width: 100%;
}

/* スマホ & タブレットの場合 */
@media screen and (max-width: 1023px) {
    #fork-c {
        display: none;
    }

#title_string {
    font-size: xx-large;
}
    .footer_frame_container {
        padding: 30px 0;
    }
}
/* ここまで--スマホの場合 */

/* デスクトップの場合 */
@media screen and (min-width: 1024px) {
    #fork-s {
        display: none;
    }

    .footer_frame_container {
        padding: 50px 0;
    }
}
/* ここまで--デスクトップの場合 */

/* デバッグ--ビューポート幅の取得と表示 */
/*
@property --_w {
    syntax: '<length>';
    inherits: true;
    initial-value: 100vw; 
}
  
@property --_h {
    syntax: '<length>';
    inherits: true;
    initial-value: 100vh; 
}
  
:root {
    --w: tan(atan2(var(--_w), 1px));
    --h: tan(atan2(var(--_h), 1px));
}

body::before {
    content: counter(w) "px × " counter(h) "px";
    counter-set: h var(--h) w var(--w);
}

body {
    align-items: center;
    background-color: #212529;
    display: flex;
    font-size: 40px;
    font-weight: 600;
    gap: 32px;
    height: calc(100vh - 40px);
    justify-content: center;
    margin: 0;
    padding: 20px 0;
    width: 100vw;
}
*/
/* ここまで--ビューポート幅の取得と表示 */
/*
h5:before {
content: '\00AB\0020';
color: #3CC;
}
h5:after {
content: '\0020\00BB';
color: #3CC;
}
h4:before {
content: "\00BB\00A0";
}
h5:before {
content: url('images/square.gif')"\00A0";
}
#header li:not(:last-child) {
margin-right: 25px;
}
*/