/*
Theme Name: and_studio Child
Version: 1.0
Template: and_studio
*/

/*
common
*/
body {
    font-family: 'Noto Sans JP', sans-serif;
    height: 100vh;
    transition: opacity 1s ease;
}
.page {
    margin: 0;
}
.txt-center {
    text-align: center;
}
.vertical-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
.bg-box {
    font-size: 27vw;
    color: #f5f5f5;
    width: 100%;
    z-index: -1;
}
.bg-box p {
    margin: 0;
}

/*
header
*/
.site-branding {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/*
main トップ
*/
.home-title {
    font-weight: 900;
    font-size: 7vw;
    line-height: 1;
    margin: 0;
}
.top-arrow-box {
    width: 29.5vw;
}
.top-arrow-box p {
    margin: 0;
}
.top-arrow-box p.top-arrow-r {
    margin: -.75vw 0 -3.2vw 0;
}
.meow-script-regular {
    font-family: "Meow Script", cursive;
    font-weight: 400;
    font-style: normal;
}

/*
main コンセプト
*/
article#post-2 {
    width: 49vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*
scroll-navigation
*/
body.fade-in,
body.fade-out {
  transition: opacity 1s ease;
}

/* 初期状態は透明だけどクラスがついた場合のみ適用 */
body.page-fade {
  opacity: 0;
}
body.page-fade.fade-in {
  opacity: 1;
}
body.page-fade.fade-out {
  opacity: 0;
}
/* ゲージ全体の枠 */
.scroll-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: rgba(255,255,255,0.1);
    z-index: 9999;
}
/* ゲージの中身 */
.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: #ff4d88; /* ピンク可愛い色 */
    transition: width 0.2s ease;
}