*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f4f4f4;
}
.wrapper{
    max-width: 620px;
    margin: 0 auto;
    padding: 15px 20px;
    background-color: #fff;
}
p,
img,
video{
    display: block;
    margin: 20px 0;
}
p{
    font-size: 19px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
}
img,
video{
    width: 100%;
    object-fit: contain;
}

.pr{
    color: #000;
    font-size: 10px;
    text-align: right;
    margin: 0;
}
.anno{
    color: #444;
    font-size: 6px;
    text-align: right;
    margin-top: -18px;
    line-height: 1.3;
}

.mt0{
    margin-top: 0;
}
.mb0{
    margin-bottom: 0;
}
.normal{
    font-weight: normal;
}

.fcB{
    color: rgb(0, 0, 255);
}
.fcP{
    color: rgb(250, 87, 204);
}
.fcPP{
    color: rgb(255, 0, 255);
}
.fcR{
    color: rgb(255, 0, 0);
}

.fs21{
    font-size: 21px;
}
.fs25{
    font-size: 25px;
}
.fs27{
    font-size: 27px;
}

h2{
    font-size: 20px;
    line-height: 1.3em;
    border-top: solid 1px #f30368;
    border-bottom: solid 1px #f30368;
    padding: 8px 10px;
    color: #444;
    margin: 60px auto 20px;
}
h2.closing{
    font-size: 27px;
    color: rgb(255, 0, 255);
    position: relative;
    border: none;
}
h2.closing::after{
    content: "";
    display: block;
    height: 3px;
    margin-top: 8px;
    background: -webkit-linear-gradient(to right, rgb(240, 154, 132), transparent);
    background: linear-gradient(to right, rgb(240, 154, 132), transparent);
}
h3{
    font-size: 17px;
    font-weight: normal;
    border-bottom: 1px solid #51bbb5;
    margin: 35px auto 10px;
    line-height: 1.8;
}

.cp_arrows {
    position: relative;
    height: 50px;
    margin-top: 1em;
    margin-bottom: 1em;
}
.cp_arrows .cp_arrowfirst {
    animation: arrow-move 2s ease-in-out infinite;
}
.cp_arrows .cp_arrowsecond {
    animation: arrow-move 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow {
    position: absolute;
    top: 100%;
    left: 45%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    opacity: 0;
}
@keyframes arrow-move {
    0% {
        top: 40%;
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.cp_arrows .cp_arrow:before {
    transform: rotate(30deg) translateX(-39%);
    transform-origin: top left;
}
.cp_arrows .cp_arrow:after {
    transform: rotate(-30deg) translateX(39%);
    transform-origin: top right;
}
.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 3px;
    content: '';
    background: #E91E63;
}
.cp_arrows *,
.cp_arrows *:before,
.cp_arrows *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.cp_arrows *,
.cp_arrows *:before,
.cp_arrows *:after {
    box-sizing: border-box;
}

.continue {
    display: flex;
    justify-content: center;
}
.continue span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 100vh;
    margin: 10px 0;
}
.continue .dot-1,
.continue .dot-2,
.continue .dot-3 {
    -webkit-animation: continue 1s infinite;
    -moz-animation: continue 1s infinite;
}
.continue .dot-1 {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
}
.continue .dot-2 {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
}
.continue .dot-3 {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}
@-webkit-keyframes continue {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes continue {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.move-arrow {
    font-size: clamp(12px, 3vw, 18px);
    position: relative;
    padding: 1em 2.5em;
    overflow: hidden;
    background-color: var(--bgcolor);
    line-height: 1.25;
}
.move-arrow .move-arrow-wrap {
    width: fit-content;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5em auto 1.5em;
    justify-content: center;
    gap: 2.5em;
}
.move-arrow .move-arrow-wrap .text {
    font-size: 17px;
    text-align: center;
    line-height: 2;
    font-weight: bold;
}
.move-arrow .arrow-body {
    font-size: 1.5em;
}
.move-arrow .arrow-body .arrow {
    position: absolute;
    width: 0.75em;
    height: 1.25em;
    background-color: #fff;
    top: -3.3em;
    animation: move var(--speed) linear infinite;
    margin: 1em 0;
}
.move-arrow .arrow-body .arrow:nth-child(2) {
    animation-delay: calc(var(--speed) / 2);
}
.move-arrow .arrow-body .arrow::after {
    content: "";
    position: absolute;
    top: 80%;
    left: 50%;
    translate: -50% 0;
    width: 0;
    height: 0;
    border-top: 0.8em solid #fff;
    border-left: 0.8em solid transparent;
    border-right: 0.8em solid transparent;
}
[style*="--arrow-color"] .arrow {
    background-color: var(--arrow-color);
}
[style*="--arrow-color"] .arrow::after {
    border-top-color: var(--arrow-color);
}
[style*="--arrow-color"] .text {
    color: var(--arrow-color);
}
@keyframes move {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(500%);
    }
}

.swiper {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    /*余白なし*/
    padding: 0;
    /*スライドの横幅*/
    width: 100%;
    /* スライドの最大幅 */
    max-width: 800px;
    margin: 0 auto 20px;
}
.swiper .swiper-wrapper {
    position: relative;
    /*横幅*/
    width: 100%;
    /*高さ*/
    height: 100%;
    display: flex;
    transform: translate3d(0, 0, 0);
    transition-property: transform;
    box-sizing: content-box;
}
.swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    transition-property: transform;
}
.swiper .swiper-slide img {
    vertical-align: bottom;
}
.swiper .swiper-slide img {
    /*横幅*/
    width: 100%;
}
.swiper .swiper-slide img.lazyload:not(.loaded) {
    width: auto;
    max-width: 100%;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    position: absolute;
    /*縦方向の位置（上起点）*/
    top: 50%;
    cursor: pointer;
}
.swiper .swiper-button-next {
    /*横方向の位置（右起点）*/
    right: 10px;
    left: auto;
    /*選択時のアウトラインの設定（非表示）*/
    outline: none;
}
.swiper .swiper-button-prev {
    /*横方向の位置（左起点）*/
    left: 10px;
    right: auto;
    /*選択時のアウトラインの設定（非表示）*/
    outline: none;
}
.swiper .swiper-button-next::before,
.swiper .swiper-button-prev::before {
    content: " ";
    /*棒の横幅*/
    width: 30px;
    /*棒の高さ*/
    height: 30px;
    position: absolute;
    z-index: 10;
}
.swiper .swiper-button-next::before {
    /*左から線種、太さ、色*/
    border-right: solid 4px #ccc;
    /*傾き（角度）*/
    transform: translateY(-55%) rotate(45deg);
    right: 0;
}
.swiper .swiper-button-prev::before {
    /*左から線種、太さ、色*/
    border-left: solid 4px #ccc;
    /*傾き（角度）*/
    transform: translateY(-55%) rotate(-45deg);
    left: 0;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
    content: " ";
    /*棒の横幅*/
    width: 30px;
    /*棒の高さ*/
    height: 30px;
    position: absolute;
    /*縦方向の位置（上起点）*/
    top: 5px;
    z-index: 10;
}
.swiper .swiper-button-next::after {
    /*左から線種、太さ、色*/
    border-right: solid 4px #ccc;
    /*傾き（角度）*/
    transform: translateY(-45%) rotate(-45deg);
    right: 0;
}
.swiper .swiper-button-prev::after {
    /*左から線種、太さ、色*/
    border-left: solid 4px #ccc;
    /*傾き（角度）*/
    transform: translateY(-45%) rotate(45deg);
    left: 0;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: transparent !important;
}
blockquote {
    position: relative;
    margin: 0 0em 1.5em;
    padding-top: 45px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    border: 2px solid #CCCCCC;
    background-color: #FEEEED;
    z-index: 1;
}
blockquote p {
    position: relative;
    z-index: 3;
    margin: 1em 0;
    text-align: left;
    font-size: 17px;
}
blockquote:before {
    content: "“";
    font-size: 500%;
    line-height: 0.8em;
    font-family: 'Times New Roman', "ＭＳ Ｐ", sans-serif;
    color: #CCCCCC;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
blockquote:after {
    content: "”";
    font-size: 500%;
    line-height: 0em;
    font-family: 'Times New Roman', "ＭＳ Ｐ", sans-serif;
    color: #CCCCCC;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}
blockquote .name {
    font-weight: bold;
    color: #ff69b4;
    font-size: 19px;
    margin: 0;
}
blockquote .txt{
    color: #444;
    text-align: justify;
    font-weight: bold;
}
blockquote .anno{
    font-size: 10px;
}
.swiper .swiper-pagination-bullet {
    width: 4px;
    /* 点の幅 */
    height: 4px;
    /* 点の高さ */
}
.swiper .swiper-pagination {
    bottom: -5px;
    /* 下方向の余白を-5pxに設定 */
    text-align: center;
    /* ページネーションを中央揃え */
}

.swiper.sole .swiper-button-prev::before,
.swiper.sole .swiper-button-prev::after,
.swiper.sole .swiper-button-next::before,
.swiper.sole .swiper-button-next::after{
    width: 20px;
    height: 20px;
}
.swiper.sole .swiper-button-prev::before{
    border-left: solid 2px #A9A9A9;
    transform: translateY(-70%) rotate(-45deg);
    left: 0;
}
.swiper.sole .swiper-button-prev::after{
    border-left: solid 2px #A9A9A9;
    transform: translateY(-30%) rotate(45deg);
    left: 0;
}
.swiper.sole .swiper-button-next::before{
    border-right: solid 2px #A9A9A9;
    transform: translateY(-70%) rotate(45deg);
    right: 0;
}
.swiper.sole .swiper-button-next::after{
    border-right: solid 2px #A9A9A9;
    transform: translateY(-30%) rotate(-45deg);
    right: 0;
}
.swiper.sole .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 25px;
}

.twitter_box {
    max-width: 100%;
    border: 2px #2FBDFA solid;
    background: #fff;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 20px;
    font-size: 17px;
    line-height: 1.3;
}
.twitter_box img,
.twitter_box p{
    margin: 0;
}
.twitter_box .prof{
    display: flex;
    gap: 15px;
}
.twitter_box .prof img{
    width: 70px;
}
.twitter_box .prof p,
.twitter_box .txt{
    color: #444;
    font-weight: normal;
    font-size: 17px;
    text-align: justify;
}
.twitter_box .txt+img{
    margin-top: 20px;
    border-radius: 10px;
}

.twitter_box .action__box {
    margin-top: 20px;
}
.twitter_box .action__box .icon__lists {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.twitter_box .action__box .icon__lists .icon__item {
    display: flex;
    align-items: center;
    color: #888888;
}
.twitter_box .action__box .icon__lists .icon__item i {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}
.twitter_box .action__box .icon__lists .icon__item i.comment {
    background-image: url("../img/img79-1.png");
}
.twitter_box .action__box .icon__lists .icon__item i.retweet {
    background-image: url("../img/img79-2.png");
}
.twitter_box .action__box .icon__lists .icon__item i.heart {
    background-image: url("../img/img79-3.png");
}
.twitter_box .action__box .icon__lists .icon__item i.arrow-up {
    background-image: url("../img/img79-4.png");
}
.twitter_box .action__box .icon__lists .icon__item span {
    font-size: 14px;
    vertical-align: middle;
    color: #888888;
}

.anq-box{
    padding: 10px 10px 25px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 25px;
}
.anq-box .nav-number{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.anq-box .nav-number::before{
    content: '';
    width: 80%;
    height: 20px;
    background-color: #eeeeee;
    position: absolute;
    top: calc(50% - 10px);
    left: 10%;
    z-index: 0;
}
.anq-box .nav-number span{
    font-size: 20px;
    border-radius: 50%;
    padding: 0;
    font-weight: bold;
    width: 45px;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background-color: #ffa07a;
    color: #fff;
    padding-bottom: 3px;
}
.anq-box .nav-number span.current{
    background-color: #ff7f50;
}
.anq-box .nav-number span.bef{
    background-color: #bbbbbb;
}
.anq-box h3{
    font-size: 20px;
    margin: 30px auto 10px;
}
.anq-box .radio-box input[type="radio"],
.anq-box .radio-box input[type="checkbox"]{
    display: none;
}
.anq-box .radio-box label{
    color: #000000;
    border: solid 3px #613d29;
    color: #613d29;
    width: 100%;
    border-radius: 100vh;
    padding: 0.5em 1em;
    font-weight: bold;
    font-size: 17px;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
    margin-bottom: 15px;
}
.anq-box .radio-box input[type="radio"]:checked+label,
.anq-box .radio-box input[type="checkbox"]:checked+label{
    background: #f96680;
    border-color: #fff;
    color: #fff;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    transition: 200ms;
}


.cta {
    display: block;
    animation: puyo 1.6s ease-in infinite;
}
@keyframes puyo {
    0% {
        transform: scale(1.09);
    }
    10% {
        transform: scale(1.09);
    }
    30% {
        transform: scale(1.01);
    }
    40% {
        transform: scale(1.01);
    }
    50% {
        transform: scale(1, 1.04);
    }
    60% {
        transform: scale(1.09);
    }
    70% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1.09);
    }
}

footer{
    text-align: center;
    padding: 20px;
    background-color: #cccccc;
    margin-top: 40px;
}
footer a{
    font-size: 11px;
    color: #fff;
    text-decoration: none;
}