/*----------------------
p-top
----------------------*/

.p-top {}

.p-top-fixed-btn {
    position: fixed;
    bottom: 145px;
    right: 110px;
    z-index: 200;
    transition: top 0.8s ease, bottom 0.8s ease;
}

.p-top-fixed-btn a {
    display: block;
    width: 200px;
    height: 200px;
    position: relative;
    padding-top: 58px;
}

.p-top-fixed-btn a:before {
    content: "";
    position: absolute;
    background-image: url(../../img/top/mv/top-fixed-btn.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation: rotate 12s infinite linear;
    z-index: 200;
}

.p-top-fixed-btn a:after {
    content: "";
    position: absolute;
    background-image: url(../../img/top/mv/top-fixed-btn-icon.png);
    background-size: contain;
    background-position: center center;
    width: 19.39px;
    height: 17.76px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 201;
}

.p-top-fixed-btn p {
    position: relative;
    z-index: 201;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    color: #fff;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 767px) {


    .p-top-fixed-btn {
        position: fixed;
        bottom: 70px;
        right: 20px;

    }

    .p-top-fixed-btn a {
        width: 100px;
        height: 100px;
        padding-top: 30px;
    }


    .p-top-fixed-btn a:before {
        width: 100px;
        height: 100px;
    }

    .p-top-fixed-btn a:after {
        width: 9px;
        height: 8px;
        bottom: 17px;
    }

    .p-top-fixed-btn p {
        font-size: 12px;
    }
}

/*----------------------
p-top-mv
----------------------*/

.p-top-mv {
    background-color: #FFFCF5;
}

/*----------------------
p-top-intro
----------------------*/

.p-top-intro {
    background-color: #FFFCF5;
    padding-top: 195px;
    position: relative;
}

.p-top-intro:before {
    content: "";
    position: absolute;
    background-image: url(../../img/top/top-intro/top-intro-img-001.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: clamp(9rem, -9.044rem + 37.64vw, 36.125rem);
    height: clamp(9rem, -8.919rem + 37.38vw, 35.938rem);
    left: 0;
    top: 254px;
}

.p-top-intro:after {
    content: "";
    position: absolute;
    background-image: url(../../img/top/top-intro/top-intro-img-002.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: clamp(7.563rem, -7.571rem + 31.57vw, 30.313rem);
    height: clamp(7.688rem, -7.696rem + 32.09vw, 30.813rem);
    right: 0;
    top: -55px;
}

.p-top-intro p {
    max-width: 756px;
    margin: 0 auto;
    margin-top: 79px;
    font-weight: 600;
    font-size: 21px;
    line-height: 3.3333;
    text-align: center;
    color: #434343;
    letter-spacing: 0;
}

.p-top-intro img {
    max-width: 812px;
    margin: 0 auto;
    margin-top: 30px;
}

.p-top-intro span {
    max-width: 812px;
    margin: 0 auto;
    display: block;
    text-align: right;
    font-weight: 500;
    font-size: 14px;
    color: #707070;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {

    .p-top-intro {
        background-color: #FFFCF5;
        padding-top: 30px;
        position: relative;
        z-index: 0;
    }

    .p-top-intro:before {
        content: none;
    }

    .p-top-intro:after {
        content: none;
    }

    .p-top-intro p {
        margin-top: 30px;
        font-size: 16px;
        line-height: 2.5;
    }

    .p-top-intro .inner {
        padding: 0 30px;
    }

    .p-top-intro span {
        font-size: 10px;
    }
}

/*----------------------
p-top-bg-purple 
----------------------*/


.p-top-bg-purple {
    background-color: #FBF4FC;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
    background-image: url(../../img/top/top-intro/top-intro-bg.png);
    background-repeat: no-repeat;
    background-size: 1920px 136px;
    background-position: top center;
    z-index: 0;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px); 
    }
    100% {
        transform: translateY(0);
    }
}

.p-top-bg-purple:before,
.p-top-bg-purple:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    /* left: 0; */
    /* width: 1920px; */
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    animation: floatUpDown 4s ease-in-out infinite;
    z-index: -1;
}

.p-top-bg-purple:before {
    background-image: url(../../img/top/top-bg-anime-001.png);
    animation-delay: 0s; /* 基本の動き */

}

.p-top-bg-purple:after {
    background-image: url(../../img/top/top-bg-anime-002.png);
    animation-delay: 3s; /* 3秒遅れで開始してタイミングをずらす */
    background-position: top 1500px center;

}

/* 
@media screen and (min-width: 1921px) {


    .p-top-bg-purple:after {
        background-size: cover;
        width: 100%;
    }
    .p-top-bg-purple:before {
        background-size: cover;
        width: 100%;
    }
} */

@media screen and (max-width: 767px) {
    .p-top-bg-purple {
        padding-bottom: 40px;
    }
    .p-top-bg-purple:before,
    .p-top-bg-purple:after {
        content: none;
    }
}

/*----------------------
p-top-present
----------------------*/
.p-top-present {
    margin: 130px auto;
    position: relative;
    z-index: 2;
}

.p-top-present__wrap {
    border-radius: 40px;
    background: #fff;
    padding-top: 69px;
    padding-bottom: 1px;
    position: relative;
    z-index: 0;
}
.ticket-wrap{
	width: 80%;
	margin: 1rem auto 7rem;
}

.p-top-present__wrap:before {
    content: "";
    position: absolute;
    background-image: url(../../img/top/top-present/top-present-img-001.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 343px;
    height: 170px;
    top: -40px;
    left: -47px;
    z-index: 1;
}

.p-top-present__wrap:after {
    content: none;
    position: absolute;
    background-image: url(../../img/top/top-present/top-present-img-002.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 274.38px;
    height: 102.81px;
    top: -14px;
    right: -13px;
    z-index: 1;
}


.p-top-present p {
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.7;
    text-align: left;
    color: #DA518E;
    margin-top: 50px;
	font-weight: 800;
}
.pre-comment{
	font-weight: 600;
	color: #000;
	line-height: 1.5;
}

.p-top-present__wrap img {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 45px;
}


.p-top-present__wrap h3{
	margin: 3rem auto 0;
	background-color: #C052CC;
	padding: 15px;
	text-align: center;
	font-size: 21px;
	color: #fff;
	border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .p-top-present {
        margin-top: 80px;
    }

    .p-top-present__wrap {
        background: #fff;
        padding-top: 69px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .p-top-present__wrap:before {
        width: 150px;
        left: -20px;
    }

    .p-top-present__wrap:after {
        width: 150px;
    }

    .p-top-present p {
        font-size: 18px;
        margin-top: 30px;
    }
	.ticket-wrap{
	width: 100%;
	margin: 0 auto 1rem;
}
	.p-top-present__wrap img {
    margin-top: 20px;
}
	    .pre-comment {
        font-size: 14px;
}
}

@media screen and (max-width: 550px) {
    .p-top-present p {
        /* text-align: left; */
    }
}


/*----------------------
p-top-event
----------------------*/

/*.p-top-event {
    margin-top: 73px;
}*/
.p-top-event {
    margin-top: 14rem;
}

.p-top-event p {
    font-weight: 600;
    font-size: 21px;
    line-height: 2.2857;
    text-align: center;
    color: #434343;
    margin-top: 37px;
    margin-bottom: 46px;
}


.p-top-event__btn-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}


@media screen and (max-width: 767px) {
	.p-top-event {
    margin-top: 13rem;
}
    /*.p-top-event {
        margin-top: 60px;
    }*/

    .p-top-event p {
        font-size: 16px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .p-top-event__btn-area {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
}

@media screen and (max-width: 550px) {
    .p-top-event p {
        text-align: left;
    }
}

/*----------------------
p-top-topic
----------------------*/

.p-top-topic {}

.p-top-topic--001 {
    margin-top: 109px;
}

.p-top-topic--002 {
    margin-top: 50px;
}

.p-top-topic__wrap {
    padding-top: 56px;
    padding-bottom: 60px;
    border-radius: 40px;
    padding-left: 135px;
    padding-right: 115px;
    position: relative;
}

.p-top-topic__number {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 152px;
    height: 152px;
    top: 44px;
    left: -67px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.p-top-topic__number--001 {
    background-image: url(../../img/top/top-topic/top-topic-01-icon.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.p-top-topic__number--002 {
    background-image: url(../../img/top/top-topic/top-topic-02-icon.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.p-top-topic__number span {
    display: block;
    font-family: "cooper-black-std", serif;
    font-weight: 900;
    font-size: 25px;
    color: #fff;
    line-height: 1;
    margin-top: 10px;
}

.p-top-topic__number p {
    font-family: "Cooper Std";
    font-weight: 900;
    font-size: 55px;
    color: #fff;
    line-height: 1;
}

.p-top-topic--001 .p-top-topic__wrap {
    background-color: #F2FCFC;
    border: 1px solid #E6F4F5;
}

.p-top-topic--002 .p-top-topic__wrap {
    background-color: #FFF5F5;
    border: 1px solid #F7D9D9;
	    margin-bottom: 8rem;
}

/* .p-top-topic--001 .p-top-topic__wrap::after {
    background-image: url(../../img/top/top-topic/top-topic-01-icon.png);
}

.p-top-topic--002 .p-top-topic__wrap::after {
    background-image: url(../../img/top/top-topic/top-topic-02-icon.png);
} */

.p-top-topic--001 .p-top-topic__wrap:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(../../img/top/top-topic/top-topic-01-flower.png);
    width: 170px;
    height: 148.94px;
    bottom: -15px;
    right: -34px;
}

.p-top-topic--002 .p-top-topic__wrap:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(../../img/top/top-topic/top-topic-02-flower.png);
    width: 262px;
    height: 170.56px;
    bottom: -15px;
    left: -34px;
}

.p-top-topic__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.p-top-topic .c-title span {
    text-align: left;
}

.p-top-topic__heading p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6666;
    text-align: left;
    color: #434343;
    max-width: 550px;
    margin-top: 11px;
}
.p-top-topic__1col {
   display: block;
	width: 80%;
	margin: 2rem auto 0;
}
.p-top-topic__2col {
    display: flex;
    gap: 25px;
    margin: 47px auto 0;
	width: 80%;
}
.topic-txt {
    display: flex;
	font-weight: 600;
    gap: 25px;
    margin: 47px auto 0;
	width: 80%;
}

.p-top-topic__2col p {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.7777;
    color: #434343;
    margin-top: 28px;
	width: 100%;
}

.p-top-topic__2col p span {
    font-size: 16px;
}

.p-top-topic__btn {
    margin-top: 50px;
}

.p-top-topic__btn .c-btn {
    margin: 0 auto;
}

@media screen and (max-width: 1350px) {

    .p-top-topic__wrap {
        padding-top: 90px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }

    .p-top-topic__number {
        width: 130px;
        height: 130px;
        top: -40px;
        left: -10px;
    }

    .p-top-topic--001 .p-top-topic__wrap:before {
        width: 150px;
        bottom: -35px;
        right: -10px;
    }

    .p-top-topic--002 .p-top-topic__wrap:before {
        width: 150px;
        bottom: -45px;
        left: -14px;
    }

}

@media screen and (max-width: 900px) {

    .p-top-topic__heading {
        display: block;
    }

    .p-top-topic .c-title span {
        text-align: center;
    }

    .p-top-topic__heading p {
        font-weight: 600;
        font-size: 16px;
        line-height: 1.6666;
        text-align: left;
        color: #434343;
        max-width: 550px;
        margin: 0 auto;
        margin-top: 20px;
    }

    .p-top-topic__2col p {
        font-size: 16px;
        margin-top: 8px;
    }

    .p-top-topic__2col p span {
        font-size: 14px;
    }

    .p-top-topic__btn {
        margin-top: 40px;
    }

}

@media screen and (max-width: 767px) {
    .p-top-topic--001 {
        margin-top: 80px;
    }

    .p-top-topic--002 {
        margin-top: 50px;
    }

    .p-top-topic__wrap {
        padding-top: 40px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }

    .p-top-topic--001 .p-top-topic__wrap:before {
        width: 110px;
        bottom: -55px;
        right: -10px;
    }
	 .p-top-topic--002 .p-top-topic__wrap{
		margin-bottom: 4rem;
    }

    .p-top-topic--002 .p-top-topic__wrap:before {
        width: 110px;
        bottom: -65px;
        left: -14px;
    }

    .p-top-topic__heading p {
        font-size: 14px;
    }

    .p-top-topic__number {
        width: 100px;
        height: 100px;
        /*top: -20px;*/
        left: -10px;
    }

    .p-top-topic__number span {
        font-size: 20px;
        margin-top: 10px;
    }

    .p-top-topic__number p {
        font-size: 36px;
    }

    .p-top-topic__2col {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 2%;
        margin-top: 15px;
		width: 90%;
    }
.p-top-topic__1col {
    display: block;
    width: 90%;
	}
	
/*    .p-top-topic__2col-item {
        width: 48%;
    }*/

    .p-top-topic__2col p span {
        font-size: 10px;
        line-height: 1.5;
        display: inline-block;
    }


    .p-top-topic__2col p {
        font-size: 14px;
        margin-top: 15px;
    }
}

/*----------------------
p-top-bg-yellow
----------------------*/

.p-top-bg-yellow {
    background-image: url(../../img/top/top-bg-002.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 98px;
    padding-bottom: 120px;
}

@media screen and (max-width: 767px) {

    .p-top-bg-yellow {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/*----------------------
p-top-bg-white
----------------------*/

.p-top-bg-white {
    background-color: #fff;
    border-radius: 40px;
    padding-top: 62px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
    border: 2px solid #FCF7EB;
    position: relative;
}

.p-top-bg-white:before {
    content: "";
    position: absolute;
    background-image: url(../../img/top/top-partner/top-partner-img-001.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 295px;
    height: 162px;
    right: -12px;
    top: -43px;
}

.p-top-bg-white:after {
    content: "";
    position: absolute;
    background-image: url(../../img/top/top-partner/top-partner-img-002.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 148px;
    height: 155px;
    left: 20px;
    bottom: -40px;
}

@media screen and (max-width: 1400px) {
    .p-top-bg-white:before {
        width: 200px;
        right: -10px;
        top: -55px;
    }

    .p-top-bg-white:after {
        width: 100px;
        left: -20px;
        bottom: -80px;
    }

}

@media screen and (max-width: 767px) {
    .p-top-bg-white {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

/*----------------------
p-top-outline
----------------------*/

.p-top-outline {
    margin-bottom: 62px;
}

.p-top-outline .c-title {
    margin-bottom: 65px;
}

.p-top-outline__table {
    max-width: 940px;
    margin: 0 auto;
    border-top: 1px solid #FCF7EB;
}

.p-top-outline__table-item {
    padding-top: 37px;
    padding-bottom: 37px;
    padding-left: 80px;
    border-bottom: 1px solid #FCF7EB;
    display: flex;
    align-items: center;
    /*gap: 106px;*/
}

.p-top-outline__table-item p {
    font-weight: bold;
    font-size: 18px;
    line-height: 2;
    color: #434343;
	width: 20%;
}

.p-top-outline__table-title {
    min-width: 72px;
}

.p-top-outline__table-text {
    flex: 1;
}

.p-top-outline__table-text a {
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    margin-top: 16px;

    width: 161px;
    height: 41px;
    border-radius: 20.5px;
    background: #da518e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.p-top-outline__table-text a:after {
    content: "";
    position: absolute;
    background-image: url(../../img/common/btn-arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 19px;
    height: 19px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
}




.p-top-partner__grid {
    max-width: 890px;
	margin: auto;
}
.partner-a{
	display: flex;
	justify-content: center;
}
.partner-a .a-box{
	width: 30%;
	margin: auto;
	margin-top: 2rem;
}
.partner-b{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 2rem;
}
.partner-b .b-box{
	width: 27%;
	margin: auto;
}
.partner-c{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 2rem;
}
.partner-c .c-box{
	width: 22%;
	margin: auto;
}
.kikaku{
	margin-top: 3rem;
}


.partner-a .sp-box{
	width: 60%;
	margin: auto;
	margin-top: 2rem;
}

@media screen and (max-width: 767px) {
    .p-top-outline {
        margin-bottom: 40px;
    }

    .p-top-outline .c-title {
        margin-bottom: 30px;
    }

    .p-top-outline__table-item {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 0;
        display: block;
    }

    .p-top-outline__table-item p {
        font-size: 16px;
        line-height: 2;
		width: 100%;
    }

    .p-top-outline__table-text {
        margin-top: 8px;
    }
.partner-a .sp-box{
	width: 100%;
}

    .p-top-partner__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
    }
}

/*----------------------
p-top-news
----------------------*/


.p-top-news {
    margin-top: 99px;
}

.p-top-news__wrap {
    position: relative;
    margin-top: 48px;
    padding-left: 40px;
    padding-right: 40px;
}

.p-top-news__grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px; */

}

.p-top-news__grid-item {
    background-color: #fff;
    border-radius: 20px;

}

.p-top-news__grid-text {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.p-top-news__grid-text p:nth-of-type(1) {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.03em;
    color: #aaa;
    margin-bottom: 10px;
}

.p-top-news__grid-text p:nth-of-type(2) {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #434343;
}

.p-top-news .swiper-button-prev {
    width: 50px;
    height: 50px;
    left: -50px;
    top: 53%;
}

.p-top-news .swiper-button-prev:after {
    background-image: url(../../img/top/top-news/top-news-arrow-left.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    content: "";
    width: 50px;
    height: 50px;
}

.p-top-news .swiper-button-next {
    width: 50px;
    height: 50px;
    right: -50px;
    top: 53%;
}

.p-top-news .swiper-button-next:after {
    background-image: url(../../img/top/top-news/top-news-arrow-right.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    content: "";
    width: 50px;
    height: 50px;
}


.p-top-news .swiper-pagination {
    bottom: -46px;
}

.p-top-news .swiper-pagination-bullet-active {
    background-color: #DA518E;
}

.p-top-news__btn {
    margin-top: 90px;
}

.p-top-news__btn .c-btn {
    margin: 0 auto;
}

@media screen and (max-width: 1400px) {

    .p-top-news .swiper-button-prev {
        left: -0;
    }

    .p-top-news .swiper-button-next {
        right: 0;
    }

}


@media screen and (max-width: 767px) {

    .p-top-news {
        margin-top: 60px;
    }

    .p-top-news__wrap {
        margin-top: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .p-top-news__grid-text {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .p-top-news__grid-text p:nth-of-type(1) {
        font-size: 14px;
    }

    .p-top-news__grid-text p:nth-of-type(2) {
        font-size: 14px;
    }

    .p-top-news .swiper-button-prev {
        width: 40px;
        height: 40px;
        left: -10px;
    }

    .p-top-news .swiper-button-prev:after {
        width: 40px;
        height: 40px;
    }

    .p-top-news .swiper-button-next {
        width: 40px;
        height: 40px;
        right: -10px;
    }

    .p-top-news .swiper-button-next:after {
        width: 40px;
        height: 40px;
    }

    .p-top-news .swiper-pagination {
        bottom: -35px;
    }

    .p-top-news__btn {
        margin-top: 50px;
    }

    .p-top-news__btn .c-btn {
        margin: 0 auto;
    }
}

/*----------------------
p-top-links
----------------------*/

.p-top-links {}

.p-top-links__project {
    margin-top: 90px;
    padding-bottom: 256px;

}

.p-top-links__project a {
    max-width: 900px;
    margin: 0 auto;
}

.p-top-links__instagram {
    background-color: #FCF2D7;
    border-radius: 20px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.p-top-links__instagram:after {
    content: "";
    position: absolute;
    background-image: url(../../img/top/top-instagram/top-instagram-fukidashi.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 430px;
    height: 218.12px;
    left: 50%;
    transform: translateX(-50%);
    top: -180px;
}

.p-top-links__instagram a {
    max-width: 388px;
}

@media screen and (max-width: 767px) {

    .p-top-links__project {
        margin-top: 75px;
        padding-bottom: 100px;

    }

    .p-top-links__instagram {
        height: 180px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .p-top-links__instagram:after {
        width: 220px;
        height: 109px;
        top: -70px;
    }

    .p-top-links__instagram a {
        max-width: 100%;
    }
}


/*----------------------
.p-top-contact 
----------------------*/

.p-top-contact {
    background-image: url(../../img/top/top-contact/top-contact-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-top: 0px;
    padding-bottom: 103px;
}

.p-top-contact__wrap {
    background-color: #fff;
    border-radius: 40px;
    border: 2px solid #EDD0F0;
    padding-top: 40px;
    padding-bottom: 63px;
}

.p-top-contact__wrap>p {
	
    font-weight: bold;
    font-size: 21px;
    line-height: 1;
    text-align: center;
    color: #434343;
    margin-top: 22px;
    margin-bottom: 40px;
}

.p-top-contact__info p,
.p-top-contact__info a {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.75;
    text-align: center;
    color: #da518e;
}

.p-top-contact__info a {
    display: inline-block;
}

@media screen and (max-width: 767px) {

    .p-top-contact {
        padding-top: 0px;
        padding-bottom: 80px;
    }

    .p-top-contact__wrap {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .p-top-contact__wrap>p {
        font-size: 20px;
        line-height: 1.75;
        margin-top: 14px;
        margin-bottom: 12px;
    }

    .p-top-contact__info p,
    .p-top-contact__info a {
        font-size: 18px;
    }

}


/*自動スライドショー*/
.slider {
	overflow: hidden;
	padding:4rem;
}
.slider ul {
	animation: slider 50s linear infinite;
	display: flex;
	margin: 0;
	padding: 0;
	width: max-content;
}
.slider ul li {
	list-style: none;
	padding: 0 5px;
	width: calc(100vw / 4 - 10px);
}
.slider img {
	display: block;
	width: 100%;
}
@keyframes slider {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-50%);
	}
}
/*自動スライドショー ここまで*/

@media screen and (max-width: 640px){
	.slider ul li {
    width: calc(200vw / 4 - 10px);
}
	.slider {
	padding:2rem 0 ;
}
}
.c-subpage-btn-area{
	display: flex;
    justify-content: center;
	margin: 1.5rem 0 0;
}

h2 .Femtech2025-logo{
	max-width: 500px;
    margin: 6rem auto 2rem;
}
@media screen and (max-width: 640px){
h2 .Femtech2025-logo{
	max-width: 84%;
}
}

.onebuilding{
	background-color: #C052CC;
	margin-top:5px; 
	padding: 5px 10px;
	color: #FFF;
}
.txt-link{
	display: contents;
}

.news-img{
	border-radius: 12px 12px 0 0;
}

.ticket-wrap h3 span{
	color: #ff0;
	font-size: 25px;
}