@charset "utf-8";


html {
    height: 100%;
    font-size: 62.5%;
    scroll-behavior: smooth;
}


body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    letter-spacing: 0;
    font-size: 1.1rem;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



@media only screen and (max-width: 47.9375em) {
    body {
        font-size: 3.7333333333vw;
    }
}

@media only screen and (max-width: 47.9375em) {
    body {
        -webkit-text-size-adjust: none;
        -moz-text-size-adjust: none;
        text-size-adjust: none;
    }
}

@media print {
    body {
        zoom: 0.5;
        -webkit-print-color-adjust: exact;
    }
}


.ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-bottom: 40px;
    position: relative;
    color: #000;
}

.ttl::after {
    display: block;
    content: "";
    background: #A8ABAF;
    width: 60px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ttl h3 {
    font-size: 4rem;
    line-height: 1.225;
    letter-spacing: 0.05em;
    color: #A8ABAF;
}

@media only screen and (max-width: 47.9375em) {
    .ttl h3 {
        font-size: 7.4666666667vw;
    }
}

.ttl span {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media only screen and (max-width: 47.9375em) {
    .ttl span {
        font-size: 4.2666666667vw;
    }
}




/* 
all
*/
.all {
    width: 100%;
    min-height: 100%;
    color: #000000;
    background-color: #E7E7E8;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    font-size: 1.6rem;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0 auto;
    padding: 0;
}

@media only screen and (max-width: 47.9375em) {
    body {
        font-size: 3.7333333333vw;
    }
}

@media only screen and (max-width: 47.9375em) {
    body {
        -webkit-text-size-adjust: none;
        -moz-text-size-adjust: none;
        text-size-adjust: none;
    }
}

@media print {
    body {
        zoom: 0.5;
        -webkit-print-color-adjust: exact;
    }
}


h1 {
    font-size: 6.6rem;
    font-weight: bold;
    line-height: 1.36;
    letter-spacing: 0.05em;
    margin: 1vw 0;
    color: #000;
}

h2 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin: 0;
    color: #000;
}

h3 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 1rem;
    margin: 0;
    color: #000;
}

@media screen and (max-width: 640px) {
    h1 {
        font-size: 3.5rem;
        color: #000;
    }

    h2 {
        font-size: 2.6rem;
        color: #000;
    }

    h3 {
        font-size: 2rem;
        color: #000;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #FFF;
}

#shottracker__section {
    width: 100%;
    max-width: 100%;
    background-color: #E7E7E8;
    position: relative;
    z-index: 10;
}

.shottracker__section-max {
    max-width: 1004px;
    margin: 0 auto;
    padding: 6vw 20px 8vw 20px;
    border-bottom: 1px solid #030303;
    position: relative;
    z-index: 12;
    color: #000;
}


@media screen and (max-width: 640px) {
    .shottracker__section-max {
        padding: 20vw 20px 20vw 20px;
    }
}

.shottracker__section.top_section {
    max-width: none;
    width: 100%;
    padding: 0;
    border-bottom: none;
}




/* 
ANIMATION
*/
div,
p,
img,
h1,
h2,
h3,
button,
span {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

div.active,
p.active,
img.active,
h1.active,
h2.active,
h3.active,
button.active,
span.active {
    opacity: 1;
    transform: translateY(0);
}

.test-slick,
.test-slick__item,
.test-slick2,
.test-slick2__item,
.shottracker__function-area--mode,
.slick_img,
.shottracker__section-max,
.shottracker__copy,
.shottracker__function-app--card,
.shottracker__function-app--card img,
.shottracker__function-app--card h3,
.shottracker__function-app--card p {
    opacity: 1;
    transform: none;
}


/* 
TOP
*/
#shottracker__hero {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.shottracker__hero-dummy {
    width: 100%;
    aspect-ratio: 7 / 3;
}

.shottracker__hero-img {
    display: block;
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 1;
    object-fit: cover;
    top: 0;
    left: 0;
}

@media (max-width: 960px) {
    .shottracker__hero-dummy {
        width: 100%;
        aspect-ratio: 3 / 4;
        max-height: 700px;
    }

}

@media (max-width: 640px) {

    .shottracker__hero-dummy {
        width: 100%;
        aspect-ratio: 4 / 5;
    }

    .shottracker__hero-img {
        top: 50px;
    }
}

.shottracker__copy {
    width: auto;
    text-align: center;
    align-items: center;
    padding: 110px 8vw 50px 8vw;
    letter-spacing: 0.8rem;
    position: relative;
    z-index: 2;
    border-bottom: none;
}

@media (max-width: 640px) {
    .shottracker__copy {
        font-size: 1.4rem;
        padding-top: 50px;
        padding-bottom: 20px;
        letter-spacing: 0.2rem;
    }

    .br-640px {
        content: "A";
        white-space: pre;
    }

    .shottracker__copy div {
        opacity: 1;
        transform: none;
    }
}

/* 
CONCEPT
*/
.shottracker__concept-title .shottracker__h2 {
    margin-bottom: 30px;
}

.shottracker__concept-copy {
    text-align: left;
    align-items: left;
    letter-spacing: 0.2rem;
    margin: 0 0 4vw;
}

.shottracker__concept-text {
    width: auto;
    height: auto;
    display: flex;
    line-height: 2.25;
    flex-direction: column;
}

.shottracker__concept-text p {
    text-wrap: wrap;
}

.shottracker__insolyis-img {
    width: 40%;
    height: auto;
    padding: 0;
    margin: 100px auto;
    object-fit: contain;
    text-align: center;
}

.shottracker__concept-button {
    display: block;
    margin: 4vw auto 0 auto;
}


@media (max-width: 640px) {

    .shottracker__concept-title .shottracker__h2 {
        margin-bottom: 10px;
    }

    .shottracker__concept-text p {
        line-height: 1.6;
    }

    .shottracker__insolyis-img {
        width: 60%;
        margin: 50px auto;
    }
}





/* 
FEATURE
*/
.shottracker__feature-section {
    width: auto;
    height: auto;
    position: relative;
}

.shottracker__feature-section .sn__card-img--top {
    width: 80%;
    height: auto;
    margin: 80px auto 20px auto;
    gap: 10px;
}

.shottracker__feature-img {
    width: 100%;
    height: fit-content;
    object-fit: contain;
    border-radius: 15px;
    margin: 0 auto;
}

.shottracker__feature-border::after {
    display: block;
    content: "";
    background: #A8ABAF;
    width: 100px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.shottracker__feature-text--set {
    margin: 100px auto 30px auto;
    padding: 30px 40px;
    background-color: rgba(299, 299, 299, 0.5);
    border: 3px solid #A8ABAF;
    border-radius: 10px;
}

.mobile-only-text {
    display: none;
}

.shottracker__button--set {
    width: 80%;
    margin: 10px auto;
    justify-content: space-between;
}

@media (max-width: 960px) {

    .shottracker__feature-section .sn__card-img--top {
        width: 100%;
        margin: 40px auto 10px auto;
        gap: 20px;
    }

    .mobile-only-text {
        display: block;
        margin: 10px auto 20px auto;
        font-size: 1.4rem;
        text-align: center;
    }

    .shottracker__button--set {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .shottracker__content-text h3 {
        letter-spacing: 0.6rem;
    }

    .shottracker__feature-text--set div {
        flex-direction: column;
        gap: 10px;
    }
}

/* 
GUIDE
*/
.shottracker__guide-section {
    width: auto;
    height: auto;
    position: relative;
}

.shottracker__guide-wapper {
    align-items: center;
    margin: 50px auto;
}

.shottracker__guide-area--attach,
.shottracker__guide-area--battery,
.shottracker__guide-area--play {
    margin-top: 20px;
}

.shottracker__guide-area--attach picture,
.shottracker__guide-area--battery picture {
    width: 25%;
}

.shottracker__guide-area--attach .shottracker__guide-img--attach,
.shottracker__guide-area--battery .shottracker__guide-img--battery,
.shottracker__guide-area--play .shottracker__guide-img--play {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 10px;
}

.shottracker__guide-area--attach {
    text-align: right;
}

.shottracker__guide-area--attach h2,
.shottracker__guide-area--battery h2,
.shottracker__guide-area--play h2 {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #000;
    letter-spacing: 0.2rem;
}

.shottracker__guide-area--play h2 {
    margin-bottom: 20px;
}

.shottracker__guide-area--attach h3,
.shottracker__guide-area--attach p {
    text-align: left;
}

.shottracker__guide-wacth--cnt,
.shottracker__guide-app--cnt {
    flex: 4;
    justify-content: center;
}

.shottracker__guide-wacth--img,
.shottracker__guide-app--img {
    flex: 3;
}

.shottracker__guide-wacth--img img,
.shottracker__guide-app--img img {
    border-radius: 3rem;
    margin-bottom: 20px;
}

.shottracker__guide-app--cnt .sn__flex-row {
    gap: 20px;
    align-items: center;
}

.sn__app-cnt p {
    margin: 0;
}

@media (max-width: 960px) {
    .shottracker__guide-wapper:nth-child(2) {
        flex-direction: column;
        align-items: center;
        margin: 4vw auto;
        gap: 0;
    }

    .shottracker__guide-area--attach picture,
    .shottracker__guide-area--battery picture {
        width: 80%;
        margin-bottom: 20px;
    }

    .shottracker__guide-wacth,
    .shottracker__guide-app {
        flex-direction: column-reverse;
    }

    .sn__app-cnt {
        justify-content: center;
    }

    .shottracker__guide-wacth--img img,
    .shottracker__guide-app--img img {
        width: 100%;
    }

}

/* 
SPECIAL
*/
.shottracker__special-section {
    width: auto;
    height: auto;
    align-items: center;
    position: relative;
    z-index: 3;
}

.shottracker__special-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 5vw auto;
}

.shottracker__special-mobile--addition {
    display: none;
}

@media (max-width: 640px) {
    .shottracker__special-mobile--addition {
        display: block;
    }

    .shottracker__special-mobile--addition h3 {
        margin: 30px auto 10px auto;
        text-align: center;
        letter-spacing: 0.5rem;
    }


    .shottracker__special-mobile--addition ul {
        margin: 0;
        padding-top: 20px;
    }

    .shottracker__special-mobile--addition .br-640px {
        text-wrap: wrap;
    }
}




/* app連携機能 */

.shottracker__function-app--scroll {
    position: relative;
    height: auto;
}

.shottracker__function-app--scroll-container {
    display: flex;
    overflow-x: scroll;
    /* scroll-snap-type: x mandatory; */
    -webkit-overflow-scrolling: touch;
    padding-left: 100px;
    background-color: #e7e7e8;
}

.shottracker__function-app--scroll-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.shottracker__function-app--scroll-container::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    --bg-opacity: 1;
    background-color: #A8ABAF;
}


.shottracker__function-app--card {
    flex: 0 0 40%;
    scroll-snap-align: start;
    margin-right: 10px;
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
    text-align: left;
}

.shottracker__function-scroll--spacer {
    flex: 0 0 200px;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.shottracker__function-app--card img {
    width: 90%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.shottracker__function-app--card h3 {
    margin: 12px 0 4px;
    font-size: 1.2em;
}

.shottracker__function-app--card p {
    margin: 0;
    color: #555;
}

.shottracker__function-scroll--button {
    position: absolute;
    top: 40%;
    right: 30px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.shottracker__function-scroll--button:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 640px) {
    .shottracker__function-app--card {
        flex: 0 0 80%;
        margin-right: 10px;
        padding: 10px;
    }

    .shottracker__function-scroll--spacer {
        flex: 0 0 50px;
    }

    .shottracker__function-app--card img {
        width: 80%;
        margin-bottom: 5px;
    }

    .shottracker__function-app--card h3 {
        letter-spacing: 0;
    }


    .shottracker__function-scroll--button {
        position: absolute;
        top: 30%;
        right: 15px;
        transform: translateY(-50%);
    }



}


/* UPCOMING */
/* .shottracker__upcoming-title h2 {
    text-align: center;
    margin: 2vw auto;
}

.shottracker__upcoming-title span {
    display: block;
    text-align: center;
    margin: 2vw auto;
}

.shotlayzer__upcoming-img {
    display: block;
    margin: 4vw auto;
    width: 30%;
} */


/* 
OTHER PRODUCT
*/
#shottracker__other {
    width: auto;
    height: auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.shottracker__other-content {
    gap: 40px;
    padding: 40px;
}

.shottracker__other-img--shotlyzer,
.shottracker__other-img--insolyis {
    width: 35%;
    height: auto;
    object-fit: contain;
}

.shottracker__other-content--shotlyzer,
.shottracker__other-content--insolyis {
    align-items: center;
    justify-content: flex-start;
    text-align: start;
}

.ishottracker__other-logo--shotlyzer,
.shottracker__other-logo--insolyis {
    width: 40vw;
    max-width: 300px;
}

.shottracker__other-content--shotlyzers .sn__btn,
.shottracker__other-content--insolyis .sn__btn {
    margin: 2vw 0;
}

@media (max-width: 640px) {
    .shottracker__other-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    .shottracker__other-img--shotlyzer,
    .shottracker__other-img--insolyis {
        width: 60%;
        height: auto;
        margin: 30px auto;
    }

    .shottracker__other-logo--shotlyzer,
    .shottracker__other-logo--insolyis {
        width: auto;
        height: 30px;
        display: block;
        margin: 5px auto;
    }

    .shottracker__other-content--shotlyzers .sn__btn,
    .shottracker__other-content--insolyis .sn__btn {
        display: block;
        margin: 3vw auto;
    }

}




/* 
DETAIL
*/
#shottracker__detail {
    width: auto;
    height: auto;
    align-items: center;
}

.shottracker__detail-card {
    width: auto;
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: center;
    text-align: center;
    margin: 50px 0 0 0;
    padding: 6vw 2vw;
    gap: 2vw;
    border-radius: 5px;
    border: 0.5px solid #000000;
    box-shadow: 5px 5px 10px rgba(155, 159, 173, 0.292);
}

.shottracker__detail-card--item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin: 0 auto;
}

.shottracker__detail-card--item span {
    font-size: 2rem;
}

.shottracker__detail-img {
    width: 40%;
    height: auto;
    padding: 30px 0;
}

.shottracker__detail-card--teble table {
    width: 100%;
    max-width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: left;
    border-collapse: collapse;
    overflow-x: auto;
    gap: 1vw;
}

.shottracker__detail-card--teble table::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.shottracker__detail-card--teble table::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    --bg-opacity: 1;
    background-color: #A8ABAF;
}

.shottracker__detail-card--teble th {
    padding: 1vw;
    white-space: nowrap;
    border-top: 1px solid rgb(110, 110, 110);
    border-bottom: 1px solid rgb(110, 110, 110);
    font-weight: bold;
}

.shottracker__detail-card--teble td {
    word-wrap: break-word;
    white-space: nowrap;
    border-top: 1px solid rgb(110, 110, 110);
    border-bottom: 1px solid rgb(110, 110, 110);
    padding-left: 2vw;
}


@media (max-width: 640px) {
    .shottracker__detail-card {
        width: auto;
        display: flex;
        flex-direction: column;
        gap: 10vw;
    }

    .shottracker__detail-card--item {
        width: 90%;
    }

}


/* 
FAQ
*/
.shottracker__faq-section {
    width: auto;
    height: auto;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.shottracker__faq-section .shottracker__section-max {
    border-bottom: none;
    padding-bottom: 2vw;
}

.shottracker__faq-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.shottracker__faq-acordion {
    width: 80%;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 2px solid #9FA3A9;
    position: relative;
    z-index: 2;
}

.shottracker__faq-acordion:nth-of-type(1),
.shottracker__faq-acordion:nth-of-type(3),
.shottracker__faq-acordion:nth-of-type(5) {
    align-self: start;
}

.shottracker__faq-acordion:nth-of-type(2),
.shottracker__faq-acordion:nth-of-type(4),
.shottracker__faq-acordion:nth-of-type(6) {
    align-self: flex-end;
}

.shottracker__faq-acordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #030303;
    cursor: pointer;
    width: auto;
    /* max-width: 500px; */
    height: auto;
    font-weight: 500;
}

@media (max-width: 640px) {
    .shottracker__faq-acordion {
        width: 100%;
        align-self: center;
    }

    .shottracker__faq-acordion summary {
        width: auto;
    }
}

/* FAQ boxのプラスマイナス */
.shottracker__faq-acordion summary::-webkit-details-marker {
    display: none;
}

.shottracker__faq-acordion summary::before,
.shottracker__faq-acordion summary::after {
    width: 1px;
    height: 0.9em;
    background-color: #000;
    content: '';
}

.shottracker__faq-acordion summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.shottracker__faq-acordion summary::after {
    transition: rotate .3s;
}

.shottracker__faq-acordion[open] summary::after {
    rotate: 90deg;
}

.shottracker__faq-acordion p {
    margin: 0;
    padding: .3em 2em 1.5em;
    text-align: left;
    font-weight: 100;
    transition: transform .5s, opacity .5s;
}

.shottracker__faq-acordion[open] p {
    transform: none;
    opacity: 1;
}




/* 問い合わせ */
.shottracker__contact {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 50px;
}

.shottracker__contact p {
    margin: 0 auto 2vw auto;
    text-align: center;
}


.shottracker__contact button {
    display: block;
    margin: 2vw auto;
}

.shottracker__contact-section .shottracker__section-max {
    border-bottom: none;
    padding-bottom: 0;
}

.shottracker__caution {
    text-align: left;
    padding: 30px 4vw;
    font-size: 1.3rem;
}



#shottracker__section-usage--info {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 auto;
    background-color: #E7E7E8;
    font-size: 16px;
}

#shottracker__section-usage--info .shottracker__section-max {
    border-bottom: none;
    max-width: none;
}

#shottracker__section-usage--info button {
    font-size: 14px;
}

#shottracker__section-usage--info .uk-section-xsmall {
    background-color: #E7E7E8;
    padding-top: 0;
}

/* 
Manual
*/
.shottracker__manual-section {
    width: auto;
    height: auto;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.shottracker__manual-section .shottracker__section-max {
    border-bottom: none;
    padding-bottom: 2vw;
}