
/*---------------------------------------------
*
* TOPページ
*　/index.html
*
---------------------------------------------*/

/*
メインカラー：#FFEE00

*/

#kv {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#kv .kv-frame {
    width: 100%;
    height: auto;
    display: block;
}

/* 1枚目（高さ確保） */
#kv .kv-frame:nth-child(1) {
    position: relative;
    z-index: 1;
    opacity: 1;
    animation: kv-flip 1.2s steps(1) infinite;
}

/* 2枚目（重ね） */
#kv .kv-frame:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    animation: kv-flip 1.2s steps(1) infinite;
    animation-delay: 0.6s;
}

@keyframes kv-flip {
    0% {
        opacity: 1;
    }

    65% {
        opacity: 1;
    }

    66% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.menu-banner ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.menu-banner ul li a {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 73px;
    display: block;
    text-align: center;
    border-radius: 8px;
    box-shadow: #000000 2px 2px 2px;
    width: 115px;
    height: 73px;
}

.menu-banner ul li:nth-child(1) a {
    background-color: #FF6E1A;
}

.menu-banner ul li:nth-child(2) a {
    background-color: #6CD51C;
}

.menu-banner ul li:nth-child(3) a {
    background-color: #CC5EDA;
}

.menu-banner.content-menu {
    position: relative;
    z-index: 1000;
    margin-top: -40px;
}

.fixed-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

/* 表示状態 */
.fixed-menu.is-show {
    transform: translateY(0);
    opacity: 1;
}

.movie-content {
    background-image: url("../img/movie-bg.png");
    height: 570px;
    background-size: cover;
    background-position: center;
    padding: 77px 5% 0 5%;
    margin-top: -62px;
    position: relative;
}

.movie-content h2 img {
    width: 80%;
    margin: 0 auto;
}

.movie-content-title{
    width: 250px;
    margin: 0 auto;
}

.movie-content iframe {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9.2;
    object-fit: cover;
    right: 0;
    left: 0;
    margin: 10px auto 0;
    border: 5px solid #00D512;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.6);
}

#trust-section {
    background-color: #FFEE00;
    padding: 20px 5% 40px 5%;
    position: relative;
}

#trust-section .anm-img img {
    display: block;
    width: 103px;
    position: absolute;
    top: -20px;
    right: 20px;
}

#trust-section .fly-char {
    display: block;
    width: 240px;
    /* 好きに */
    transform-origin: 60% 60%;
    animation: floatY 1s ease-in-out infinite,
        roll 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes roll {

    0%,
    100% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }
}

/* 動きが苦手な人への配慮 */
@media (prefers-reduced-motion: reduce) {
    .fly-char {
        animation: none;
    }
}

#trust-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

#trust-section ul li img {
    display: block;
    width: 100%;
}

#understanding-section {
    background-color: rgba(255, 238, 0, 0.3);
    padding: 10px 5% 60px 5%;
    text-align: center;
    position: relative;
}

#understanding-section .anm-img img {
    display: block;
    width: 100px;
    position: absolute;
    top: 120px;
    right: 22px;
}

.cheer-fairy {
    display: block;
    width: 200px;
    transform-origin: 50% 65%;
    animation:
        swayX 1.5s ease-in-out infinite,
        bobY 1.3s ease-in-out infinite;
}

@keyframes swayX {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(8deg);
    }

    75% {
        transform: rotate(-8deg);
    }
}

@keyframes bobY {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -12px;
    }
}



#understanding-section p {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 20px;
}

#understanding-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

#understanding-section ul li img {
    display: block;
    width: 100%;
}


#usage-menu-section {
    background-image: url("../img/dot-v2-bg.png");
    background-size: cover;
    padding: 10px 5% 60px 5%;
    text-align: center;
    position: relative;
}

#usage-menu-section .anm-img img {
    display: block;
    width: 108px;
    position: absolute;
    top: -30px;
    left: 12px;
}

#usage-menu-section .magic-fairy {
    display: block;
    width: 240px;
    /* 任意 */
    transform-origin: 60% 60%;
    animation:
        floatDiagonal 1.7s ease-in-out infinite,
        rollMagic 2.4s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatDiagonal {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(24px, -20px);
    }
}

@keyframes rollMagic {

    0%,
    100% {
        rotate: -4deg;
    }

    50% {
        rotate: 6deg;
    }
}

/* 動きが苦手な人への配慮 */
@media (prefers-reduced-motion: reduce) {
    .magic-fairy {
        animation: none;
    }
}


#usage-menu-section p {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 20px;
}

#usage-menu-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
    justify-content: center;
}

#usage-menu-section ul li {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    line-height: 73px;
    display: block;
    text-align: center;
    border-radius: 8px;
    box-shadow: #000000 2px 2px 2px;
    width: 157px;
    height: 75px;
    background-color: #FFAA00;
}

.top-btn img {
    position: fixed;
    right: 5%;
    display: block;
    width: 50px;
    bottom: 90px;
}

#plan-banner-section {
    background-image: url("../img/dot-bg.png");
    background-size: cover;
    padding: 40px 5% 40px 5%;
    text-align: center;
}

#plan-banner-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

#plan-banner-section ul li img {
    display: block;
    width: 100%;
}

#store-info-section {
    background-color: #FFEE00;
    padding: 40px 5% 60px 5%;
}

#store-info-section h2 img {
    width: 80%;
    margin: 0 auto 20px auto;
}

#store-info-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 21px 0;
}

#store-info-section ul li {
    display: block;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: #000000 2px 2px 2px;
}

#store-info-section ul li:nth-child(1) span {
    position: relative;
}

#store-info-section .anm-img img {
    width: 118px;
    height: 100px;
}

#store-info-section ul li span {
    display: block;
    width: 100%;
    height: 28px;
    background-color: #E40707;
    border-radius: 4px 4px 0 0;
}

#store-info-section ul li img {
    width: 100%;
}

#store-info-section ul li .text {
    padding: 10px 0 30px 0;
}

#store-info-section ul li .text h3 {
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0 5px 0;
    text-align: center;
}

#store-info-section ul li .text .tel {
    font-size: 34px;
    font-weight: bold;
    padding-bottom: 20px;
    text-align: center;
}

#store-info-section ul li .text table {
    width: 80%;
    margin: 0 auto;
}

#store-info-section ul li .text table tr {
    display: flex;
    padding: 4px 0;
    justify-content: center;
}

#store-info-section ul li .text table th {
    font-size: 16px;
    line-height: 1.6;
    width: 76px;
    height: 28px;
    background-color: #E40707;
    text-align: center;
    color: #fff;
    width: 20%;
}

#store-info-section ul li .text table td {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #000;
    margin-left: 10px;
    width: 80%;
}

#what-section {
    background-image: url("../img/what-info-bg.png");
    background-size: cover;
    padding: 40px 5% 80px 5%;
    text-align: center;
}

#what-section h2 img {
    width: 50%;
    margin: 0 auto;
}

#what-section p {
    font-size: 15px;
    line-height: 1.7;
    width: 95%;
    margin: 20px auto 0 auto;
    padding-top: 40px;
}

#what-section p {
    span {
        font-size: 21px;
        line-height: 1.7;
        font-weight: bold;
        display: block;
    }
}

#what-section .box {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 15px;
    margin: 30px 0 0 0;
}

#what-section .box h3 {
    font-size: 16px;
    line-height: 1.6;
    font-weight: bold;
    color: #1CBC90;
}

#what-section .box ul {
    margin-top: 10px;
}

#what-section .box li {
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    display: flex;
    align-items: center;
}

#what-section .box li::before {
    content: "◼︎";
    color: #1CBC90;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    margin-right: 6px;
}

#what-section a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px auto 0 auto;
    background-color: #1CBC90;
    color: #fff;
    font-size: 17px;
    line-height: 60px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: #000000 2px 2px 2px;
}

#what-section a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
    background-image: url("../img/Group.png");
}

#what-section a span {
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

#line-application-section {
    position: relative;
    top: -40px;
}

#line-application-section .content {
    background-image: url("../img/dot-bg.png");
    background-size: cover;
    padding: 20px 0 60px 0;
    text-align: center;
}

#line-application-section .top-img {
    display: block;
    width: 100%;
}

#line-application-section h2 img {
    width: 80%;
    margin: 20px auto;
}

#line-application-section p {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px;
    text-align: center;
}

#line-application-section ul {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px auto;
    align-items: center;
}

#tel-application-section {
    background-image: url("../img/dot-bg.png");
    background-size: cover;
    padding-bottom: 70px;
    margin-top: -40px;
    position: relative;
}

#tel-application-section .tel-icon-img {
    display: block;
    width: 108px;
    position: absolute;
    top: 40px;
    right: 10px;
}

#tel-application-section .top-img {
    display: block;
    width: 100%;
}

#tel-application-section h2 img {
    width: 70%;
    margin: 20px auto;
}

#tel-application-section p {
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
    text-align: center;
}

#tel-application-section .text-box p {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

#tel-application-section .text-box .tel-number a {
    color: #0037FF;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    display: block;
}

#tel-application-section .text-box span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

#tel-application-section .btn {
    display: flex;
    justify-content: center;
    width: 80%;
    padding: 15px;
    margin: 30px auto 0 auto;
    background-color: #FFEE00;
    color: #000;
    font-size: 17px;
    line-height: 17px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: #000000 2px 2px 2px;
    text-align: center;
    align-items: center;
}

#tel-application-section .btn span {
    margin-top: 0;
    margin-left: 10px;
}

#tel-application-section .btn img {
    display: block;
    width: 28px;
}

#tel-application-section .sns-banner {
    width: 80%;
    margin: 65px auto 0 auto;
}

#tel-application-section .sns-banner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    justify-content: space-between;
}

#tel-application-section .sns-banner ul li {
    width: 49%;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 10px;
}

#tel-application-section .sns-banner ul li span {
    margin: 5px 0;
    display: block;
}

#tel-application-section img.line {
    width: 225px;
    margin: 10px auto;
}


.footer-menu {
    width: 80%;
    margin: 25px auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-menu ul li {
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
    font-weight: bold;
}

.footer-content {
    background-color: #FFEE00;
    padding: 20px 5% 120px 5%;
    text-align: center;
}

footer h1 img {
    display: block;
    width: 168px;
    margin: 0 auto 22px auto;
}

footer p {
    font-size: 17px;
    line-height: 1.6;
}

.slider {
    margin-inline: auto;
    width: 100%;
}

.slider-img {
    margin: 0 2.5px;
}

.slider-img img {
    height: auto;
    width: 100%;
}

#slider {
    background-image: url("../img/dot-bg.png");
    background-size: cover;
    padding: 40px 0px;
    text-align: center;
    position: relative;
}

.arrow_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position: absolute;
    z-index: 999;
    margin-top: -20px;
}

.prev-arrow {
    left: 2%;
}

.next-arrow {
    right: 2%;
}

.prev-arrow {
    transform: rotate(180deg);
    margin-right: 20px;
}

.prev-arrow::before,
.next-arrow::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #FFF;
    border-top: 3px solid #FFF;
    top: 0;
    bottom: 0;
    left: -1px;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}

.slick-dots li button:before {
    font-size: 11px !important;
    color: #3339B9 !important;
}

.frame {
    margin-top: 10px;
}

.frame .frame-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

/* 共通行コンポーネント */
.frame .div,
.frame .div-2 {
    display: flex;
    width: 100%;
    min-height: 48px;
    padding: 12px 0;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: var(--);
}

.frame .div {
    border-bottom: 1px solid #ffc300;
}

/* テキスト */
.frame .text-wrapper,
.frame .TOP {
    font-family: "Noto Sans JP-Medium", Helvetica;
    font-weight: 500;
    color: #000;
    font-size: 17px;
    line-height: 22px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* アイコン背景 */
.frame .vector-wrapper {
    width: 20px;
    height: 20px;
    padding: 6px;
    background-color: #ffc300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG */
.frame .vector {
    width: 8px;
    height: auto;
}
