/**
* Project
**/
.p-mv {
    position: relative;
    height: 44vw;
    padding-top: 56px;
}

@media only screen and (max-width: 767px) {
    .p-mv {
        height: 190vw;
        padding-top: 5vw;
    }
}

@keyframes scaleAnim {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.p-mv__img img {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-name: scaleAnim;
    animation-timing-function: ease-out;
}

.p-mv .p-mv__inner,
.p-mv .swiper-wrapper {
    height: 100%;
}

.p-mv .p-mv__inner {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .p-mv .p-mv__inner {
        flex-direction: column-reverse;
    }
}

.p-mv__txt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38.75%;
    padding: min(4vw,20px) min(5vw,80px);
    background: #fffbf8;
}

@media only screen and (max-width: 767px) {
    .p-mv__txt {
        width: 100%;
        padding: 5vw 4.3vw 8vw;
    }
}

.p-mv__txtInner {
    max-width: 500px;
    margin: 0 auto;
}

.p-mv__date {
    display: block;
    margin-top: min(4vw,40px);
    padding: 10px 20px;
    color: var(--color_accent);
    border: 2px solid var(--color_accent);
    font-size: 1.375rem;
    font-weight: bold;
    text-align: center; 
}

@media only screen and (max-width: 767px) {
    .p-mv__date {
        width: 80%;
        margin: 4vw auto 0; 
        padding: 2px 4vw;
        font-size: 3.8vw;
        border: 1px solid var(--color_accent);
    }
}

.p-mv__item {
    z-index: 1;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.p-mv__slider {
    width: 61.25%;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .p-mv__slider {
        width: 100%;
        height: 100%;
    }
}

.p-mv__sliderList {
    width: 100%;
    height: 100%;
}

.p-mv__img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.p-mv__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-mv .swiper-pagination {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    position: absolute;
    bottom: 34px !important;
    left: 34px !important;
    text-align: left;
}

.p-mv .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1rem;
    background: inherit !important;
    z-index: 1;
    opacity: 1 !important;
}

.p-mv .swiper-pagination .swiper-pagination-bullet-active {
    background: inherit !important;
    /*border: 1px solid #fff;*/
}

.p-mv .swiper-pagination .swiper-pagination-bullet .circle-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.p-mv .swiper-pagination .swiper-pagination-bullet .circle-animation {
    opacity: 0;
}

.p-mv .swiper-pagination .swiper-pagination-bullet-active .circle-animation {
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    animation: dash 1.6s ease-in-out forwards;
    /*transform: rotate(-90deg);*/
    transform-origin: 50% 50%;
    opacity: 1;
}

@keyframes dash{
  to{
    stroke-dashoffset:0;
  }
}

@media only screen and (max-width: 767px) {
    .p-modal__name {
        margin-bottom: 2.4vw;
    }
}







/* ------------------------------------------ 
	
 - MV

------------------------------------------ */
.top_mv {
	width:100%;
	position: relative;
	top: 0;
}

.mv {
	animation-name: mvAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
	position:relative;
}

@keyframes mvAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media only screen and (max-width: 599px) {
	.mv_img {
	    background: url(/2024fukuoka-cp-lp/assets/images/index/main-sp.jpg);

	    background-repeat: no-repeat;
	    background-size: cover;
	    width: 100%;
	    max-width: 599px;
	    height: 160vmin;
	}
}


@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.mv h1 {
		z-index:3;
		position: absolute;
	    width: 100%;
	    display: flex;
	    justify-content: flex-start;
	    align-items: center;
	    top: 0;
	    left: 0;
	}
	.mv h1 img {
		max-width: 100%;
		height: 56vmin;
	}
	.mv p {
		position:absolute;
		top:5%;
		right: 0;
		z-index:3;
	}
	.mv p img {
		width: 67%;
		max-width: 100%;
	}
	.mv_img {
	    background: url(/2024fukuoka-cp-lp/assets/images/index/main-pc.jpg);
	    background-position: 63% bottom;
	    background-repeat: no-repeat;
	    background-size: cover;
	    width: 100%;
	    max-width: 1024px;
	    height: 56vmin;
	    margin:0 auto;
	}
}

@media only screen and (min-width: 1025px) {
	.mv h1 {
		z-index:3;
		position: absolute;
	    width: 100%;
	    display: flex;
	    justify-content: flex-start;
	    align-items: center;
	    top: 0;
	    left: 0;
	}
	.mv h1 img {
		max-width: 100%;
		height: 86vmin;
	}
	.mv p {
		position:absolute;
		top:5%;
		right:1%;
		z-index:3;
	}
	.mv p img {
		width: 90%;
		max-width: 100%;
	}
	.mv_img {
	    background: url(/2024fukuoka-cp-lp/assets/images/index/main-pc.jpg);
	    background-position: 45% top;
	    background-repeat: no-repeat;
	    background-size: cover;
	    width: 100%;
	    max-width: 1920px;
	    height: 86vmin;
	    margin:0 auto;
	    position: relative;
	}
}











/* ------------------------
- lead_area
------------------------ */
.lead_area {
    margin:2rem auto;
    text-align: center;
}




.p-intro {
    position: relative;
    z-index: 1;
    padding: min(8vw,90px) min(3vw,40px);
    background: #ffecf0;
}

@media only screen and (max-width: 767px) {
    .p-intro {
        padding: 8vw 0 13vw;
    }
}

.p-intro__head {
    margin-bottom: min(8vw,80px);
}

.p-intro__ttl {
    font-size: 2.4375rem;
    line-height: 1.6;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-intro__ttl {
        font-size: 4.8vw;
    }
}

.p-intro__ttl span {
    position: relative;
    padding-bottom: 8px;
    font-weight: 700;
    /*border-bottom: 4px solid var(--color_accent);*/
}

@media only screen and (max-width: 767px) {
    .p-intro__ttl span {
        padding-bottom: 1vw;
        /*border-bottom: 3px solid var(--color_accent);*/
    }
}

.p-intro__ttl span:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color_accent);
    transition-duration: 0.8s;
    transition-delay: 0.2s;
}

@media only screen and (max-width: 767px) {
    .p-intro__ttl span:after {
        height: 3px;

    }
}

.p-intro__head.is-active .p-intro__ttl span:after {
    width: 100%;
}

.p-intro__ttl strong {
    font-size: 3.95rem;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .p-intro__ttl strong {
        font-size: 7.8vw;
    }
}

.p-intro__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .p-intro__list {
        display: block;
        width: 70vw;
        margin: 0 auto;
    }
	.p-intro__list__second {
		display: block;
		width: 88vw;
		margin: 0 auto;
	}
}

.p-intro__list .p-intro__listItem {
    position: relative;
    width: calc((100% - 2px)/3);
    padding: min(5vw,60px) min(3.2vw,32px);
    color: #fff;
    text-align: center;
    background: var(--color_accent);
    display: flex;
    align-items: center;
    flex-direction: column;
}
.p-intro__list__second .p-intro__listItem {
    position: relative;
    width: calc((100% - 2px)/4);
    padding: min(5vw,60px) min(3.2vw,32px);
    color: #fff;
    text-align: center;
    background: var(--bg_form);
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 767px) {
    .p-intro__list .p-intro__listItem {
        width: 100%;
        padding: 8.3vw 5vw;
    }
	.p-intro__list__second .p-intro__listItem {
        width: 78%;
        padding: 8.3vw 5vw;
        margin: 0 auto;
    }
}


.p-intro__list .p-intro__listItem:not(:last-child):after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color_bg);
}
.p-intro__list__second .p-intro__listItem:not(:last-child):after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color_accent);
}
@media only screen and (max-width: 767px) {
    .p-intro__list .p-intro__listItem:not(:last-child):after {
        top: inherit;
        right: inherit;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
    }
	.p-intro__list__second .p-intro__listItem:not(:last-child):after {
        top: inherit;
        right: inherit;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
    }
}






.p-intro__first .p-intro__list .p-intro__listItem:first-child:before {
    display: flex;
    align-items: center;
    justify-content: center;
    content: "OR";
    position: absolute;
    top: 50%;
    right: -32px;
    width: 65px;
    height: 65px;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--color_bg);
    background: var(--color_accent);
    border: 1px solid var(--color_bg);
    z-index: 1;
    border-radius: 65px;
    transform: translate(0,-50%);
}

@media only screen and (max-width: 767px) {
    .p-intro__first .p-intro__list .p-intro__listItem:first-child:before {
        top: inherit;
        bottom: -4vw;
        right: inherit;
        left: 50%;
        width: 8vw;
        height: 8vw;
        border-radius: 8vw;
        font-size: 3.2vw;
        transform: translate(-50%,0);
    }
}

.p-intro__first .p-intro__list .p-intro__listItem:nth-child(2):before {
    display: flex;
    align-items: center;
    justify-content: center;
    content: "+";
    position: absolute;
    top: 50%;
    right: -32px;
    width: 65px;
    height: 65px;
    padding-bottom: 5px;
    font-size: 2.9rem;
    font-weight: bold;
    color: var(--color_accent);
    background: var(--color_bg);
    border: 1px solid var(--color_bg);
    z-index: 1;
    border-radius: 65px;
    transform: translate(0,-50%);
}

@media only screen and (max-width: 767px) {
    .p-intro__first .p-intro__list .p-intro__listItem:nth-child(2):before {
        top: inherit;
        bottom: -4vw;
        right: inherit;
        left: 50%;
        width: 8vw;
        height: 8vw;
        border-radius: 8vw;
        font-size: 6vw;
        transform: translate(-50%,0);
    }
}










.p-intro__list .p-intro__listItem h3 {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
}
.p-intro__list__second .p-intro__listItem h3 {
	color: var(--color_accent);
}

.p-intro__list .p-intro__listItem h3 span{
	font-size:1.2rem;
}
.p-intro__list__second .p-intro__listItem h3 span {
	font-size:1.2rem;
}

.p-intro__listItem:nth-child(4) h3 span,
.p-intro__listItem:nth-child(5) h3 span {
	letter-spacing:-2px;
}
@media only screen and (max-width: 767px) {
    .p-intro__list .p-intro__listItem h3 {
        font-size: 5.3vw;
    }
	.p-intro__list .p-intro__listItem h3 span{
	    font-size:4.3vw;
	}
    .p-intro__listItem:nth-child(4) h3 span,
	.p-intro__listItem:nth-child(5) h3 span {
		letter-spacing:0;
	}
}

.p-intro__list .p-intro__listItem p {
    margin-top: min(3vw,32px);
    font-size: 0.8rem;
    font-family: var(--font_family);
    text-align: left;
    letter-spacing:-0.6px;
    color: var(--color_bg);
}
.p-intro__list__second .p-intro__listItem p {
	color: var(--color_main);
}
@media only screen and (max-width: 767px) {
    .p-intro__list .p-intro__listItem p {
        margin-top: 2vw;
        font-size: 3vw;
        font-family: var(--font_family);
        line-height: 1.5;
    }
	.p-intro__list__second .p-intro__listItem p {
		
	}
}

.p-intro__listItem__btn {
	text-align:center;
	margin:0 auto;
}
.p-intro__listItem__btn a {
	background: var(--color_main);
	color: var(--bg_form);
	display:block;
	padding:3px 36px;
	font-weight: bold;
	line-height: 1.8;
}
@media only screen and (max-width: 767px) {
	.p-intro__listItem__btn {
		text-align:center;
		margin:0 auto;
	}
	.p-intro__listItem__btn a {
		line-height:2;
		padding:3px 60px;
	}
}

.p-intro__listItem i {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 190px;
    height: 192px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .p-intro__listItem i {
        width: 32vw;
        margin-bottom: 2.8vw;
        height: inherit;
    }
}

.p-intro__note {
    margin: min(4vw,40px) 0;
    text-align: right;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .p-intro__note {
        display: block;
        margin: 8vw 0 8.1vw;
        text-align: left;
        font-size: 3.2vw;
        line-height: 1.8;
    }
}

.p-intro__note span {
    color: var(--color_accent);
}

@media only screen and (max-width: 767px) {

}

.p-intro .p-contact {
    background: var(--color_bg);
}

.p-merit {
    position: relative;
    z-index: 1;
    padding: min(12.5vw,140px) min(3vw,40px) min(9vw,100px);
}

@media only screen and (max-width: 767px) {
    .p-merit {
        padding: 18vw 0 12vw;
    }
}

.p-merit__ttl {
    position: relative;
    margin-bottom: min(4vw,40px);
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-merit__ttl {
        margin-bottom: 5vw;
    }
}

.p-merit__bubble {
    position: absolute;
    top: -196px;
    left: 50%;
    max-width: 320px;
    width: 24vw;
    transform: translate(-50%, 0);
    z-index: 1;
}

@media only screen and (max-width: 1200px) {
    .p-merit__bubble {
        top: -17vw;
    }
}

@media only screen and (max-width: 767px) {
    .p-merit__bubble {
        position: absolute;
        top: -27vw;
        left: 50%;
        width: 52vw;
    }
}

.p-merit__ttlTop {
    font-size: 1.75rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__ttlTop {
        font-size: 4vw;
    }
}

.p-merit__ttlMdl {
    max-width: 500px;
    margin: min(3vw,32px) auto min(0.1vw,0px);
}

@media only screen and (max-width: 767px) {
    .p-merit__ttlMdl {
        width: 60vw;
        margin: 3.8vw auto 1.8vw;
    }
}

.p-merit__ttlBtm {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.p-merit__ttlBtm span {
    line-height: 1.2;
}

.p-merit__ttlBtm span:first-child {
    margin-right: 0.4rem;
    font-size: 2.375rem;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .p-merit__ttlBtm span:first-child {
        margin-right: 0.6vw;
        font-size: 4.4vw;
    }
}

.p-merit__ttlBtm span:first-child .logo {
    font-size: 2.8rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__ttlBtm span:first-child .logo {
        font-size: 5.18vw;
    }
}

.p-merit__ttlBtm span:nth-child(2) {
    font-size: 2rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__ttlBtm span:nth-child(2) {
        font-size: 4.2vw;
    }
}

.p-merit__ttlBtm span:nth-child(3) {
    position: relative;
    top: -6px;
    font-size: 3.343rem;
    color: var(--color_accent02);
}

@media only screen and (max-width: 767px) {
    .p-merit__ttlBtm span:nth-child(3) {
        top: -0.8vw;
        font-size: 5vw;
    }
}

.p-merit__ttlBtm span:nth-child(3) b {
    font-size: 10rem;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .p-merit__ttlBtm span:nth-child(3) b {
        font-size: 17vw;
    }
}

.p-merit__head {
    display: inline-block;
    position: relative;
    margin-bottom: min(3.6vw,36px);
}

@media only screen and (max-width: 767px) {
    .p-merit__head {
        width: 100%;
        margin-bottom: 5vw;
    }
}

.p-merit__headInner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-bottom: min(2.4vw,20px);
}

@media only screen and (max-width: 767px) {
    .p-merit__headInner {
        gap: 4vw;
        padding-bottom: 2.8vw;
    }
}

.p-merit__headInner:after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 4px;
    background: var(--color_accent02);
    transition-delay: 0.2s;
    transition-duration: 0.8s;
}

@media only screen and (max-width: 767px) {
    .p-merit__headInner:after {
        height: 3px;
    }
}

.p-merit__head.is-active .p-merit__headInner:after {
    width: 100%;
}

.p-merit__date {
    margin-top: min(2vw,20px);
    font-size: 1.75rem;
    color: var(--color_accent02);
    font-weight: bold;
    letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
    .p-merit__date {
        margin-top: 4vw;
        font-size: 4.4vw;
        text-align: center;
    }
}

.p-merit__num {
    font-size: 7.125rem;
    font-weight: bold;
    color: #dddddd;
}

@media only screen and (max-width: 767px) {
    .p-merit__num {
        font-size: 16vw;
    }
}

.p-merit__body p {
    font-size: 1.125rem;
    line-height: 2;
}

@media only screen and (max-width: 767px) {
    .p-merit__body p {
        font-size: 3.4vw;
        line-height: 1.8;
        text-indent: left;
    }
}

.p-merit__subTtl {
    font-size: 1.737rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .p-merit__subTtl {
        font-size: 4.2vw;
    }
}

.p-merit__btnWrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: min(4vw,40px);
}

@media only screen and (max-width: 767px) {
    .p-merit__btnWrap {
        gap: 5vw;
        margin-top: 5vw;
    }

}
.p-merit__btn {

}

.p-merit__btn a {
    width: 100%;
}

.p-merit__subject {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--color_accent02);
    gap: min(2vw,20px);
    margin-bottom: min(3vw,30px);
}

@media only screen and (max-width: 767px) {
    .p-merit__subject {
        flex-wrap: wrap;
        gap: 2vw;
        margin-bottom: 5vw;
        text-align: center;
    }
}

.p-merit__subjectDefult {
    font-size: 1.5rem;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .p-merit__subjectDefult {
        width: 100%;
        font-size: 3.8vw;
        text-align: center;
    }
}

.p-merit__subjectTxt {
    padding: 12px min(2vw,20px);
    border: 1px solid var(--color_accent02);
    font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__subjectTxt {
        width: 32vw;
        padding: 0.6vw 2vw 0.1vw;
        font-size: 3.8vw;
    }
}

.p-merit__subjectColor {
    padding: 12px min(2vw,20px);
    color: var(--color_bg);
    background: var(--color_accent02);
    font-size: 1.5rem;
    border: 1px solid var(--color_accent02);
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-merit__subjectColor {
        width: 71vw;
        padding: 0.6vw 2vw 0.1vw;
        font-size: 3.8vw;
    }
}

.p-merit__subjectPlus {
    max-width: 20px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .p-merit__subjectPlus {
        width: 3.6vw;
    }
}

.p-merit__table {
    margin-top: min(8vw,80px);
}

@media only screen and (max-width: 767px) {
    .p-merit__table {
        margin-top: 8vw;
    }
}

.p-merit__tableTtl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-merit__tableTtl span {
    max-width: 440px;
    width: 100%;
    text-align: center;
    padding: 16px min(2vw,20px);
    color: var(--color_bg);
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--color_accent);
}

@media only screen and (max-width: 767px) {
    .p-merit__tableTtl span {
        padding: 1.6vw 5vw;
        font-size: 3.8vw;
        width: 60vw;
        background: var(--color_accent02);
    }
}

.p-merit__tableList {
    display: flex;
    flex-wrap: wrap;
}

.p-merit__tableItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: min(2.8vw,28px); 
    width: 50%;
    padding: min(1.6vw,12px) min(4vw,40px);
    border-bottom: 1px solid var(--color_accent02);
}


@media only screen and (max-width: 767px) {
    .p-merit__tableItem {
        justify-content: space-between;
        gap: 0; 
        width: 100%;
        padding: 2.8vw 0;
    }
}

.p-merit__tableItem:nth-child(1),
.p-merit__tableItem:nth-child(2) {
    border-top: 1px solid var(--color_accent02);
}

@media only screen and (max-width: 767px) {
    .p-merit__tableItem:nth-child(2) {
        border-top: 0;
    }
}

.p-merit__tableLess {
    font-size: 1.375rem;
    min-width: 193px;
}

@media only screen and (max-width: 1200px) {
    .p-merit__tableLess {
        min-width: 13vw;
    }
}

@media only screen and (max-width: 767px) {
    .p-merit__tableLess {
        font-size: 3.8vw;
        min-width: 38vw;
    }
}

.p-merit__tableDisc {
    width: 100%;
    text-align: right;
    font-size: 1.6875rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color_accent);
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .p-merit__tableDisc {
        min-width: 50vw;
        font-size: 5vw;
        text-align: right;
    }
}

.p-merit__tableDisc strong {
    font-size: 3rem;
    font-weight: bold;
    text-align: right;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .p-merit__tableDisc strong {
        font-size: 7.8vw;
    }
}

.p-merit__tableArrow {
    display: block;
    width: 20px;
    min-width: 20px;
}

@media only screen and (max-width: 767px) {
    .p-merit__tableArrow {
        min-width: 2vw;
        width: 2vw;
        text-align: center;
    }
    .p-merit__tableArrow img {
        display: block;
        margin: 0 auto;
        min-width: 2.8vw;
        width: 2.8vw;
    }
}

.p-merit__tableNote {
    margin-top: min(3vw,32px);
    font-size: 0.8rem;
    line-height: 1.8;
   
}

@media only screen and (max-width: 767px) {
    .p-merit__tableNote {
        margin-top: 4vw;
        font-size: 3vw;
        font-weight: normal;
    }
}

.p-merit__flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min(6vw,60px);
}

@media only screen and (max-width: 767px) {
    .p-merit__flex {
        flex-direction: column-reverse;
        gap: 3vw;
    }
}

.p-merit__badge {
    max-width: 325px;
    width: 32%;
}

@media only screen and (max-width: 767px) {
    .p-merit__badge {
        width: 50%;
    }
}

.p-merit__zero {
    position: relative;
    margin-top: 13px;
    font-size: 1.75rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__zero {
        margin-top: 2vw;
        left: -2vw;
    }
} 

.p-merit__zero strong {
    font-size: 6rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__zero strong {
        font-size: 13vw;
    }
} 

.p-merit__zero sup {
    position: absolute;
    top: -5px;
    left: 60px;
    color: var(--color_accent);
    font-size: 1rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__zero sup {
        top: -3.4vw;
        left: 8.2vw;
        font-size: 2.4vw;
    }
} 

.p-merit__block {
    display: flex;
    margin-top: min(8vw,70px);
}

@media only screen and (max-width: 767px) {
    .p-merit__block {
        display: block;
    }
} 

.p-merit__blockImg {
    width: 52%;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .p-merit__blockImg {
        width: 100%;
    }
    .p-merit__blockImg img {
        vertical-align: bottom;
    }
}

.p-merit__blockTxt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 48%;
    padding: min(4vw,40px) min(5vw,50px) min(4vw,40px) min(6vw,60px);
    background: #fffbf8;
}

@media only screen and (max-width: 767px) {
    .p-merit__blockTxt {
        width: 100%;
        padding: 6vw 5vw;
        align-items: center;
    }
}

.p-merit__blockTtl {
    margin-bottom: min(2vw,20px);
    font-size: 1.625rem;
    font-weight: bold;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .p-merit__blockTtl {
        margin-bottom: 0.2vw;
        font-size: 3.8vw;
        text-align: center;
    }
}

.p-merit__blockTtl span {
    position: relative;
    padding-bottom: 14px;
    font-size: 1.375rem;
    color: var(--color_accent02);
    /*border-bottom: 4px solid var(--color_accent02);*/
}

@media only screen and (max-width: 767px) {
    .p-merit__blockTtl span {
        padding-bottom: 1.4vw;
        font-size: 4vw;
        /*border-bottom: 3px solid var(--color_accent02);*/
    }
}

.p-merit__blockTtl span:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color_accent02);
    transition-duration: 0.8s;
    transition-delay: 0.2s;
}

@media only screen and (max-width: 767px) {
    .p-merit__blockTtl span:after {
        height: 3px;
    }
}

.p-merit__block.is-active .p-merit__blockTtl span:after {
    width: 100%;
}

.p-merit__blockTtl span sup {
    font-size: 1.125rem;
    font-weight: 400;
    position: absolute;
    right: 5px;
    top: -37px;
    color: var(--color_main);
}

@media only screen and (max-width: 767px) {
    .p-merit__blockTtl span sup {
        font-size: 2.6vw;
        right: 0.4vw;
        top: -3.8vw;
    }
}

.p-merit__blockTtl span strong {
    font-size: 3.5rem;
    color: var(--color_accent02);
}

@media only screen and (max-width: 767px) {
    .p-merit__blockTtl span strong {
        font-size: 8vw;
    }
}

.p-merit__blockNote {
    font-size: 1.125rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__blockNote {
        font-size: 3vw;
    }
}

.p-merit__sec {
    margin-bottom: min(5vw,50px);
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-merit__sec {
        margin-bottom: 2vw;
    }
}

.p-merit__secTtl {
    margin: min(8vw,80px) 0 min(3.2vw,32px);
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .p-merit__secTtl {
        margin: 5vw 0 4vw;
        font-size: 3.8vw;
    }
}

.p-merit__secTtl span {
    color: var(--color_accent02);
}

.p-merit__secTtl strong {
    font-size: 3rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__secTtl strong {
        font-size: 8vw;
    }
}

.p-merit__secTtl sup {
    font-size: 1.2rem;
    vertical-align: 8px;
}

@media only screen and (max-width: 767px) {
    .p-merit__secTtl sup {
        font-size: 3vw;
        vertical-align: 1vw;
    }
}
.p-merit__secArrow {
    display: block;
    width: 40px;
    margin: min(2vw,20px) auto 0;
}

@media only screen and (max-width: 767px) {
    .p-merit__secArrow {
        width: 5vw;
        margin: 4vw auto 0;
    }
}

.p-merit__split {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: min(8vw,80px);
    padding: min(6vw,60px);
    background: #ffecf0;
}

@media only screen and (max-width: 767px) {
    .p-merit__split {
        padding: 0 5vw 2vw;
        margin-bottom: 8vw;
    }
}

@media only screen and (max-width: 767px) {
    .p-merit__splitInner {
        width: 100%;
    }
}

.p-merit__splitHead {
    display: flex;
    gap: min(6vw,60px);
}

@media only screen and (max-width: 767px) {
    .p-merit__splitHead {
        display: none;
    }
}

.p-merit__splitHead span {
    font-size: 1.125rem;
    font-weight: bold;
    padding: 5px 6px 4px;
    line-height: 1.3;
    text-align: center;
}

.p-merit__splitHead span:first-child {
    min-width: 90px;
    background: var(--color_bg);
    border: 1px solid var(--color_main); 
}

.p-merit__splitHead span:nth-child(2) {
    width: 100%;
    color:  var(--color_accent02); 
    background: var(--color_bg);
    border: 1px solid var(--color_accent02); 
}

.p-merit__splitItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: min(2.8vw,20px) 0;
    border-bottom: 2px solid #dddddd; 
}

@media only screen and (max-width: 767px) {
    .p-merit__splitItem {
        align-items: flex-start;
        padding: 3vw 0 3vw;
        border-bottom: 1px solid #dddddd;
    }
}

.p-merit__splitTimes {
    min-width: 90px;
    width: 10%;
    font-size: 1.75rem;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitTimes {
        min-width: 12vw;
        width: 12vw;
        font-size: 4vw;
        line-height: 1.4;
    }
}

.p-merit__splitRight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitRight {
        flex-direction: column;
        gap: 2.8vw;
    }
}

.p-merit__splitArrow {
    width: 3%;
    min-width: 34px;
    margin: 0 min(1.2vw,12px);
    font-size: 2.25rem;
    line-height: 1;
    color: var(--color_accent02);
}

@media only screen and (max-width: 767px) {
    .p-merit__splitArrow {
        width: 4.4vw;
        min-width: 4.4vw;
        margin: 2vw 2.8vw 0;
        font-size: 4vw;
    }
}

.p-merit__splitTimes strong {
    font-size: 3rem;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitTimes strong {
        font-size: 6vw;
    }
}

.p-merit__splitMonth {
    width: 50%;
    text-align: right;
    white-space:nowrap;
    font-size: 2rem;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitMonth {
        width: auto;
        font-size: 4vw;
    }
}

.p-merit__splitMonth dl {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitMonth dl {
        gap: 1.2vw;
    }
}

.p-merit__splitMonth dd {
    line-height: 0.2;
}

.p-merit__splitMonth strong {
    font-size: 4.1875rem;
    font-weight: bold;
    color: var(--color_accent);
    line-height: 1.1;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitMonth strong {
        font-size: 8vw;
    }
}

.p-merit__splitMonth small {
    display: block;
    margin-top: 4px;
    font-size: 1rem;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitMonth small {
        position: relative;
        left: -5vw;
        margin-top: 1.8vw;
        font-size: 3vw;
    }
}

.p-merit__splitValue {
    width: 55%;
    margin-left: min(2vw,20px);
    padding: 2px 20px;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    color: var(--color_bg);
    white-space: nowrap;
    background: var(--color_accent);
}

@media only screen and (max-width: 767px) {
    .p-merit__splitValue {
        width: 100%;
        margin-left: 0;
        padding: 1vw 1.8vw 1vw;
        font-size: 3.4vw;
    }
}

.p-merit__splitValue strong {
    font-size: 2.375rem;
    line-height: 1.2;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitValue strong {
        font-size: 4.4vw;
    }
}

.p-merit__splitValue sup {
    font-size: 0.875rem;
    line-height: 1;
    vertical-align: 15px;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitValue sup {
        font-size: 2.6vw;
        vertical-align: 0.8vw;
    }
}

.p-merit__splitNote {
    margin-top: min(3.4vw,32px);
    text-align: right;
    font-size: 1rem;
    line-height: 1.8;
}

@media only screen and (max-width: 767px) {
    .p-merit__splitNote {
        margin-top: 2vw;
        font-size: 3.2vw;
    }
}

.p-contact {
    display: flex;
    border: 1px solid #ffecf0;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-contact {
        display: block;
    }
}

.p-contact__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: min(2vw,20px) min(6vw,60px) min(3vw,32px);
    border-right: 1px solid #ffecf0;
}

@media only screen and (max-width: 767px) {
    .p-contact__left {
        width: 100%;
        padding: 6vw 5vw 7vw;
        border-right: 0;
        border-bottom: 1px solid #ffecf0;
    }
}

.p-contact__left p {
    margin-bottom: min(1.2vw,12px);
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .p-contact__left p {
        margin-bottom: 6vw;
        font-size: 3.8vw;
    }
}

.p-contact__left .c-btn__default {
    width: 100%;
}

.p-contact__left .c-btn__default i {
    right: 40px
}

@media only screen and (max-width: 767px) {
    .p-contact__left .c-btn__default i {
        right: 5vw;
    }
}
.p-contact__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: min(2vw,20px) min(6vw,60px);
}

@media only screen and (max-width: 767px) {
    .p-contact__right {
        width: 100%;
        padding: 8.3vw 5vw;
    }
}

.p-contact__right p {
    margin-bottom: min(1.2vw,12px);
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .p-contact__right p {
        margin-bottom: 2.8vw;
        font-size: 3.8vw;
    }
}

.p-contact__right h5 {
    font-size: 2.75rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

@media only screen and (max-width: 767px) {
    .p-contact__right h5 {
        font-size: 8.4vw;
    }
}

.p-contact__right h5 a {
    transition-duration: 0.3s;
}

.p-contact__right h5 a:hover {
    opacity: 0.7;
}

.p-contact__right h5 small {
    display: block;
    margin-top: min(1vw,10px);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

@media only screen and (max-width: 767px) {
    .p-contact__right h5 small {
        margin-top: 0.8vw;
        font-size: 3.4vw;
    }
}

#merit01.p-merit__art {
    display: flex;
    gap: min(6vw,60px);
    align-items: center;
}

@media only screen and (max-width: 767px) {
    #merit01.p-merit__art {
        flex-direction: column;
        gap: 6.4vw;
        margin-bottom: 50px;
    }
}

#merit01 .p-merit__img {
    position: relative;
    max-width: 560px;
    width: 46.6%;
    padding: 0 0 min(6vw,60px);
}

@media only screen and (max-width: 767px) {
    #merit01 .p-merit__img {
        width: 100%;
        padding: 0 0 8vw;
    }
}

#merit01 .p-merit__img span {
    display: block;
    overflow: hidden;
}

#merit01 .p-merit__img span:nth-child(2) {
    display: block;
    width: 51.785%;
    margin-top: min(2vw,20px);
}

#merit01 .p-merit__img span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 44.642%;
}

#merit01 .p-merit__txt {
    width: 48%;
}

@media only screen and (max-width: 767px) {
    #merit01 .p-merit__txt {
        width: 100%;
    }
}

#merit01 .p-merit__subTtl strong {
    font-size: 2.25rem;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    #merit01 .p-merit__subTtl strong {
        font-size: 5.4vw;
    }
}

#merit02.p-merit__art {
    margin-top: min(8vw,80px);
}

@media only screen and (max-width: 767px) {
   #merit02.p-merit__art {
        margin-top: 8vw;
        margin-bottom: 50px;
    }
}

#merit02 .p-merit__txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media only screen and (max-width: 767px) {
   #merit02 .p-merit__txt {
       flex-direction: flex-start;
       align-items: flex-start;
       text-align: left;
   }

}

#merit02 .p-merit__subTtl strong {
    font-size: 3.25rem;
    line-height: 1;
}


@media only screen and (max-width: 767px) {
   #merit02 .p-merit__subTtl strong {
        font-size: 7.6vw;
    }
}

#merit03.p-merit__art {
    margin-top: min(8vw,80px);
}

#access {
    padding: min(8vw,80px) min(3vw,40px);
    background: #f6f6f6;
}

@media only screen and (max-width: 767px) {
   #access {
       padding: 6vw 0 8vw;
       background: #f6f6f6;
   }
}

.p-access__main {
    display: flex;
    gap: min(6vw,60px);
}

@media only screen and (max-width: 767px) {
  .p-access__main {
       flex-direction: column-reverse;
       gap: 5vw;
   }
}

.p-access__txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(44% - min(3vw,30px));
}

@media only screen and (max-width: 767px) {
  .p-access__txt {
      width: 100%;
  }
}

.p-access__txt p {
    font-size: 1.125rem;
    line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .p-access__txt p {
      font-size: 3.4vw;
  }
}

.p-access__head {
    margin-bottom: min(2.8vw,28px);
}

@media only screen and (max-width: 767px) {
  .p-access__head {
      margin-bottom: 6.2vw
  }
}


.p-access__logo {
    display: block;
    max-width: 240px;
    margin-bottom: min(0.6vw,6px);
}

@media only screen and (max-width: 767px) {
  .p-access__logo {
      width: 42vw;
      margin-bottom: 1.8vw;
  }
}

.p-access__logo a {
    transition-duration: 0.3s;
}

.p-access__logo a:hover {
    opacity: 0.7;
}

.p-access__ttl {
    margin-top: min(0.8vw,12px);
    margin-bottom: min(2vw,20px);
    font-size: 1.75rem;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .p-access__ttl {
      margin-top: 0.8vw;
      margin-bottom: 3.8vw;
      font-size: 4.8vw;
  }
}


.p-access__map {
    position: relative;
    width: calc(56% - min(3vw,30px));
}

@media only screen and (max-width: 767px) {
  .p-access__map {
      width: 100%;
  }
}

.p-access__map a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.p-access__map--img {
    width: 100%;
    height: min(48vw,580px);
    position: relative;
}

@media only screen and (max-width: 767px) {
    .p-access__map--img {
        width: 100%;
        height: 52vw;
    }
}

.p-access__map--img iframe {
    width: 100%;
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
}
