/* CSS Document */
/* -----------------------------------------
 *
 * Table of Contents:
 *
 * 0.0 - tags
 * 1.0 - Repeatable Patterns
 * 2.0 - Basic Layout
 * 3.0 - Page setting
 ----------------------------------------- */
/* -----------------------------------------

	0.0 - tags

-----------------------------------------*/
html {
    touch-action: manipulation;
}
body {
    -ms-content-zooming: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    color: #000;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt";
}

.en{
    font-family: 'IBM Plex Sans', sans-serif;
}
a{
    text-decoration: none;
    color: #000;
}

img {
    vertical-align: bottom;
}
a:hover img {
    opacity: 0.8;
}
a img {
    transition: opacity 0.3s ease-out;
}

hr.dash{
    border-top: 1px dashed #aaa;
}
.sp {
    display: none;
}
.pc {
    display: block;
}
@media (max-width: 750px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
.mb-70 {margin-bottom: 70px;}
.mb-80 {margin-bottom: 80px;}
.mb-90 {margin-bottom: 90px;}
.mb-100 {margin-bottom: 100px;}
.mb-110 {margin-bottom: 110px;}
.mb-120 {margin-bottom: 120px;}
.mb-130 {margin-bottom: 130px;}
.mb-140 {margin-bottom: 140px;}
.mb-150 {margin-bottom: 150px;}
.mb-160 {margin-bottom: 160px;}
.mb-170 {margin-bottom: 170px;}
.mb-180 {margin-bottom: 180px;}
.mb-190 {margin-bottom: 190px;}
.mb-200 {margin-bottom: 200px;}
@media (max-width: 640px) {
    .mb-5 {margin-bottom:0.666666667vw;}
    .mb-10 {margin-bottom:1.333333333vw;}
    .mb-20 {margin-bottom:2.666666667vw;}
    .mb-30 {margin-bottom:4vw;}
    .mb-40 {margin-bottom:5.333333333vw;}
    .mb-50 {margin-bottom:6.666666667vw;}
    .mb-60 {margin-bottom:8vw;}
    .mb-70 {margin-bottom:9.333333333vw;}
    .mb-80 {margin-bottom:10.66666667vw;}
    .mb-90 {margin-bottom:12vw;}
    .mb-100 {margin-bottom:13.33333333vw;}
    .mb-110 {margin-bottom:14.66666667vw;}
    .mb-120 {margin-bottom:16vw;}
    .mb-130 {margin-bottom:17.33333333vw;}
    .mb-140 {margin-bottom:18.66666667vw;}
    .mb-150 {margin-bottom:20vw;}
    .mb-160 {margin-bottom:21.33333333vw;}
    .mb-170 {margin-bottom:22.66666667vw;}
    .mb-180 {margin-bottom:24vw;}
    .mb-190 {margin-bottom:25.33333333vw;}
    .mb-200 {margin-bottom:26.66666667vw;}
}

/* -----------------------------------------
wrapper
-----------------------------------------*/
#wrapper {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: auto;
    padding-bottom: 60px;
}

/* -----------------------------------------
gfooter
-----------------------------------------*/
#gfooter-wrap {
    /*position: relative;*/
    z-index: 3000;
    background: #fff;
    color: #333;
    font-size: 80%;
    padding: 20px 0;
    text-align: center;
    line-height: 1.4;
    position: absolute;
	bottom: 0;
	width: 100%;
}
#gfooter-wrap address {
    margin-top: 10px;
    font-style: normal;
}
@media screen and (max-width: 750px) {
    #gfooter-wrap {
        font-size: 2.4vw;
    }
}

/* -----------------------------------------

	2.0 - Basic Layout

-----------------------------------------*/
#contents {
    margin: 0 auto;
    line-height: 1.6;
    font-size: 26px;
    max-width: 750px;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
}
@media (max-width: 750px) {
    #contents {
        font-size: 3.2vw;
    }
}
#contents img {
    width: 100%;
}
#contents .w-750 {
    max-width: 750px;
    margin: auto;
}
#contents img {
    width: 100%;
}
#contents .w-750 {
    max-width: 750px;
    margin: auto;
}
li {
    list-style-type: none;
}
.fw-b {
    font-weight: 600;
}
.ta-c {
    text-align: center;
}
.mincho {
    font-family: 'Noto Serif JP', serif;
}
.attention-footer {
    font-size: 90%;
    margin: 0 0 6em;
}
.btn-top {
    text-align: center;
    font-weight: 500;
    margin-bottom: 3em;
}

.contents-footer{
    width: 76.2666%;
    margin-right: auto;
    margin-left: auto;
    padding: 3.5em 0 0;
}

.link_home{
    position: relative;
    border: 1px solid #707070;
}
.link_home a{
    font-family: 'IBM Plex Sans', sans-serif;
    color: #707070;
    display: block;
    font-size: 24px;
    font-weight: 500;
    padding: 5px 5%;
    position: relative;
    text-align: center;
}

.link_home a:after{
    content: '';
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 2px #707070;
    border-right: solid 2px #707070;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 3%;
    margin-top: -5px;
}

@media screen and (max-width: 750px) {
    .link_home a{
        padding: 2px 5%;
        font-size: 4.5vw;
    }
    .link_home a:after{
        width: 5px;
        height: 5px;
        right: 3%;
        margin-top: -2.5px;
    }
}


/* -----------------------------------------
page Layout
-----------------------------------------*/
#wrapper {
    padding-bottom: unset;
}
#contents {
	font-family: "Noto Sans JP", sans-serif;
}




/* Contents  */
div#contents {
	-moz-font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	font-variant-ligatures: no-common-ligatures;
	position: relative;
	padding: 70px 0 0;
}

div#burning {
    position: relative;
	margin: 0 auto;
    padding-top: 13.334vw;
    max-width: 100%;
    text-align: left;
    color: #4d4d4d;
    background: #dfdad6;
    overflow: hidden;
}
div#burning img {
	height: auto;
	max-width: 100%;
}
div#burning button {
	margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    color: inherit;
}
div#burning * {
    box-sizing: border-box;
}
div#burning span.circle {
    color: #ff5838;
}
div#burning .page-top {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    bottom: 17.334vw;
    margin: 0 auto;
    width: 100%;
    z-index: 0;
}
div#burning .page-top a {
    position: relative;
    display: block;
    margin-right: 1.334vw;
    width: 10.667vw;
    height: 10.667vw;
    z-index: 500;
}
@media screen and (min-width: 751px) {
    div#burning {
        padding-top: 100px;
        max-width: 750px;
    }
    div#burning .page-top {
        bottom: 100px;
        width: 750px;
    }
    div#burning .page-top a {
        margin-right: 10px;
        width: 80px;
        height: 80px;
    }
}


/* header */
.l-header {
	position: fixed;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2.4vw 4vw;
    width: 100%;
	background: #ffffff;
	z-index: 990;
}
.p-header__logo {
    width: 26.667vw;
}
.g-menu__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
	width: 8.534vw;
	height: 8.534vw;
    background: transparent;
	z-index: 1010;
	cursor: pointer;
}
.g-menu__btn div:not([class]) {
	position: relative;
    width: 100%;
	height: 4.8vw;
} 
.g-menu__btn div:not([class]) .g-menu__line {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 0.8vw;
	border-radius: 50vh;
	background: #199280;
	transition: 0.4s;
}
.g-menu__btn div:not([class])::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 0.8vw;
	border-radius: 50vh;
	background: #5077ff;
	transform-origin: left;
	transition: 0.4s;
}
.g-menu__btn div:not([class])::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 0.8vw;
	border-radius: 50vh;
	background: #ff5838;
	transform-origin: left;
	transition: 0.4s;
}
.g-menu__btn[aria-expanded="true"] div:not([class]) .g-menu__line {
	opacity: 0;
}
.g-menu__btn[aria-expanded="true"] div:not([class]) {
	/* width: 6vw; */
}
.g-menu__btn[aria-expanded="true"] div:not([class])::before {
	transform: translate(0.934vw, -0.267vw) rotate(45deg);
    background: #ffffff;
}
.g-menu__btn[aria-expanded="true"] div:not([class])::after {
	transform: translate(0.934vw, 1.734vw) rotate(-45deg);
    background: #ffffff;
}
.g-menu__name {
    display: block;
    margin-bottom: -0.4vw;
    font-size: 3.067vw;
    font-weight: 700;
    color: #ff5838;
    text-align: center;
}
.g-menu__btn[aria-expanded="true"] .g-menu__name {
    display: none;
}
.l-menu {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	/* padding: 14.667vw; */
	width: 100%;
	max-height: 100vh;
	background: #dfdad6;
	z-index: 1000;
    overflow-y: auto;
}
.l-menu ul {
    position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.334vw 0;
    padding: 15.067vw 6.534vw 17.334vw; 

}
.l-menu ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15.067vw;
    background: url(../img/231003/wave-top.webp);
    background-repeat: no-repeat;
    background-size: contain;
}
.l-menu ul::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15.067vw;
    transform: rotate(180deg);
    background: url(../img/231003/wave-top.webp);
    background-repeat: no-repeat;
    background-size: contain;
}
.l-menu__back {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 990;
    width: 100%;
    height: 100vh;
    background: transparent;
    transition: 0.4s;
}
.l-menu__back.active {
	display: block;
}
#pagetop.fixed {
    height: 100%;
    overflow: hidden;
}
@media screen and (min-width: 751px) {
	.l-header {
		padding: 18px 30px;
        width: 750px;
	}
    .p-header__logo {
        width: 200px;
    }
	.g-menu__btn {
		width: 64px;
		height: 64px;
	}
	.g-menu__btn div:not([class]) {
		height: 36px;
	} 
	.g-menu__btn div:not([class]) .g-menu__line {
		height: 6.5px;
	}
	.g-menu__btn div:not([class])::before {
		height: 6.5px;
	}
	.g-menu__btn div:not([class])::after {
		height: 6.5px;
	}
	.g-menu__btn[aria-expanded="true"] div:not([class]) .g-menu__line {
		opacity: 0;
	}
	.g-menu__btn[aria-expanded="true"] div:not([class]) {
		/* width: 45px; */
	}
	.g-menu__btn[aria-expanded="true"] div:not([class])::before {
		transform: translate(7px, -2px) rotate(45deg);
	}
	.g-menu__btn[aria-expanded="true"] div:not([class])::after {
		transform: translate(7px, 13px) rotate(-45deg);
	}
    .g-menu__name {
        margin-bottom: -3px;
        font-size: 23px;
    }
	.l-menu ul {
		gap: 10px 0;
        padding: 112px 49px 130px; 
	}
	.l-menu ul::before {
        height: 112px;
	}
	.l-menu ul::after {
        height: 112px;
	}
}


/* footer */
.l-footer {
    position: relative;
    margin: 0 auto;
    padding: 5.334vw 0 2.667vw;
    width: 100%;
    background: #dfdad6;
    text-align: center;
}
.l-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.6vw;
    background: url(../img/231003/footer-line.webp);
    background-repeat: no-repeat;
    background-size: contain;
}
.l-footer small {
    font-size: 2.667vw;
    line-height: 1.2;
}
@media screen and (min-width: 751px) {
    .l-footer {
        padding: 40px 0 20px;
        width: 750px;
    }
    .l-footer::before {
        height: 12px;
    }
    .l-footer small {
        font-size: 20px;
    }
}


.wave {
    position: relative;
    padding: 21.334vw 0 20.267vw;
}
div.wave::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12.267vw;
    background: url(../img/231003/wave-top.webp);
    background-repeat: no-repeat;
    background-size: contain;
}
div.wave::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16.267vw;
    background: url(../img/231003/wave-bottom.webp);
    background-repeat: no-repeat;
    background-size: contain;
}
div.inner {
    width: 86.667vw;
    margin: 0 auto;
}
@media screen and (min-width: 751px) {
    .wave {
        padding: 160px 0 152px;
    }
    div.wave::before {
        height: 92px;
    }
    div.wave::after {
        height: 122px;
    }
    div.inner {
        width: 650px;
    }
}


.btn-all {
    display: block;
    margin-inline: auto;
    width: 47.2vw;
}
.btn-online {
    display: inline-block;
    width: 41.867vw;
}
.btn-popup {
    display: block;
    margin-inline: auto;
    width: 82.4vw;
}
.btn-detail {
    display: block;
    margin-inline: auto;
    width: 36vw;
}
.icon-line {
    display: inline-block;
    width: 8vw;
}
.icon-line_osaka {
    display: inline-block;
    width: 21.067vw;
}
.icon-line_tokyo {
    display: inline-block;
    width: 21.067vw;
}
.icon-instagram {
    display: block;
    width: 21.067vw;
}
@media screen and (min-width: 751px) {
    .btn-all {
        width: 354px;
    }
    .btn-online {
        width: 314px;
    }
    .btn-popup {
        width: 618px;
    }
    .btn-detail {
        width: 270px;
    }
    .icon-line {
        width: 60px;
    }
    .icon-line_osaka {
        width: 158px;
    }
    .icon-line_tokyo {
        width: 158px;
    }
    .icon-instagram {
        width: 158px;
    }
}    


.c-sec__ttl {
    position: relative;
}

.f-font-m1 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    transform: rotate(0.05deg);
}
.f-weight-m {
    font-weight: 500 !important;
}

/* mv */
.l-mv {
    padding: 0 0 9.334vw;
}
.l-mv .p-mv__ttl {
    margin-bottom: 9.6vw;
}
.l-mv .p-mv__lead {
    display: block;
    margin-bottom: 4vw;
    width: 100%;
    font-size: 6.134vw;
    line-height: 1.74;
    font-weight: 700;
    font-style: normal;
    color: #ff5838;
    text-align: center;
}
.l-mv .p-mv__text {
    font-size: 4.267vw;
    line-height: 1.75;
    font-weight: 500;
    color: #ff5838;
    text-align: center;
}
@media screen and (min-width: 751px) {
    .l-mv {
        padding: 0 0 70px;
    }
    .l-mv .p-mv__ttl {
        margin-bottom: 72px;
    }
    .l-mv .p-mv__lead {
        margin-bottom: 30px;
        font-size: 46px;
    }
    .l-mv .p-mv__text {
        font-size: 32px;
    }
}


/* event */
.l-event {
    padding: 2.667vw 0 15.2vw
}
.l-event .c-sec__ttl {
    margin-bottom: 11.2vw;
}
.l-event .p-event__image {
    margin-bottom: 9.334vw;
}
.l-event .p-event__lead {
    display: block;
    margin-bottom: 4vw;
    width: 100%;
    font-size: 6.134vw;
    line-height: 1.74;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}
.l-event .p-event__text {
    margin-bottom: 8vw;
    font-size: 3.734vw;
    line-height: 1.75;
    font-weight: 500;
    text-align: center;
}
.l-event .p-event-popup {
    margin: 0 auto;
    padding: 4.8vw;
    width: 86.667vw;
    border: 0.534vw solid #ff5838;
    border-radius: 2.667vw;
}
.l-event .p-event-popup .p-event-popup__ttl {
    margin-bottom: 2.4vw;
    font-size: 4.267vw;
    line-height: 1.75;
    font-weight: 700;
}
.l-event .p-event-popup .p-event-popup__period {
    margin-bottom: 3.2vw;
}
.l-event .p-event-popup .p-event-popup__period li {
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 500;
}
@media screen and (min-width: 751px) {
    .l-event {
        padding: 20px 0 114px;
    }
    .l-event .c-sec__ttl {
        margin-bottom: 84px;
    }
    .l-event .p-event__image {
        margin-bottom: 70px;
    }
    .l-event .p-event__lead {
        margin-bottom: 30px;
        font-size: 46px;
    }
    .l-event .p-event__text {
        margin-bottom: 60px;
        font-size: 28px;
    }
    .l-event .p-event-popup {
        padding: 36px;
        width: 650px;
        border: 4px solid #ff5838;
        border-radius: 20px;
    }
    .l-event .p-event-popup .p-event-popup__ttl {
        margin-bottom: 18px;
        font-size: 32px;
    }
    .l-event .p-event-popup .p-event-popup__period {
        margin-bottom: 24px;
    }
    .l-event .p-event-popup .p-event-popup__period li {
        font-size: 24px;
    }
}


/* art */
.l-art {
    padding: 2.667vw 0 16.534vw;
}
.l-art .c-sec__ttl {
    margin-bottom: 3.2vw;
}
.l-art .c-sec__ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 22.134vw;
    height: 22.134vw;
    border-radius: 50vh;
    background: #ff5838;
}
.l-art .p-art__lead {
    margin-bottom: 2.134vw;
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 500;
}
.l-art .p-art__map {
    margin-bottom: 3.2vw;
}
.l-art .p-art__list {
    display: flex;
    flex-direction: column;
    gap: 5.334vw 0;
    margin-bottom: 12.667vw;
}
.l-art .p-art__item figure {
    margin-bottom: 3.2vw;
}
.l-art .p-art__item .p-art__name {
    font-size: 3.734vw;
    line-height: 1.5;
    font-weight: 700;
    color: #ff5838;
}
.l-art .p-art__item .p-art__text {
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 500;
}
.l-art .p-art-switch__list {
    display: flex;
    flex-direction: column;
    gap: 12.667vw 0;
    margin-bottom: 13.334vw;
}
.l-art .p-art-switch__list .slick-dots {
    margin-top: 1.6vw;
}
.l-art .p-art-switch__list .slick-dots li {
    width: 2vw;
    height: 2vw;
}
.l-art .p-art-switch__list .slick-dots li button {
    width: 2vw;
    height: 2vw;
    background: #afaa9d;
}
.l-art .p-art-switch__list .slick-dots li.slick-active button {
    width: 2vw;
    height: 2vw;
    background: url(../img/231003/btn-dots.webp);
    background-repeat: no-repeat;
    background-size: contain;
}
.l-art .p-art-switch__list .switch {
    margin-bottom: 3.2vw;
}
.l-art .p-art-switch__list .p-art-switch__text {
    margin-bottom: 2.667vw;
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 300;
}
.l-art .p-art-slide__list .slick-list {
    overflow: visible;
}
.l-art .p-art-slide__item {
    display: flex;
    flex-direction: column;
    width: 70.667vw;
    min-height: 93.334vw;
    margin-right: 6.667vw;
}
.l-art .p-art-slide__item figure {
    margin-bottom: 2.667vw;
}
.l-art .p-art-slide__item figcaption {
    margin-bottom: 2.134vw;
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 300;
}
.l-art .p-art-slide__item .p-art-slide__btn {
    display: flex;
    gap: 0 6.4vw;
    margin-top: auto;
}
@media screen and (min-width: 751px) {
    .l-art {
        padding: 20px 0 124px;
    }
    .l-art .c-sec__ttl {
        margin-bottom: 24px;
    }
    .l-art .c-sec__ttl::before {
        width: 166px;
        height: 166px;
    }
    .l-art .p-art__lead {
        margin-bottom: 16px;
        font-size: 24px;
    }
    .l-art .p-art__map {
        margin-bottom: 24px;
    }
    .l-art .p-art__list {
        gap: 40px 0;
        margin-bottom: 95px;
    }
    .l-art .p-art__item figure {
        margin-bottom: 24px;
    }
    .l-art .p-art__item .p-art__name {
        font-size: 28px;
    }
    .l-art .p-art__item .p-art__text {
        font-size: 24px;
    }
    .l-art .p-art-switch__list {
        gap: 95px 0;
        margin-bottom: 100px;
    }
    .l-art .p-art-switch__list .slick-dots {
        margin-top: 12px;
    }
    .l-art .p-art-switch__list .slick-dots li {
        width: 15px;
        height: 15px;
    }
    .l-art .p-art-switch__list .slick-dots li button {
        width: 15px;
        height: 15px;
    }
    .l-art .p-art-switch__list .slick-dots li.slick-active button {
        width: 15px;
        height: 15px;
    }
    .l-art .p-art-switch__list .switch {
        margin-bottom: 24px;
    }
    .l-art .p-art-switch__list .p-art-switch__text {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .l-art .p-art-slide__item {
        width: 530px;
        min-height: 700px;
        margin-right: 50px;
    }
    .l-art .p-art-slide__item figure {
        margin-bottom: 20px;
    }
    .l-art .p-art-slide__item figcaption {
        margin-bottom: 16px;
        font-size: 24px;
    }
    .l-art .p-art-slide__item .p-art-slide__btn {
        gap: 0 48px;
    }
}


/* arrange */
.l-arrange {
    padding: 2.667vw 0 16.534vw;
}
.l-arrange .c-sec__ttl {
    margin-bottom: 3.2vw;
}
.l-arrange .c-sec__ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 22.134vw;
    height: 22.134vw;
    border-radius: 50vh;
    background: #ff5838;
}
.l-arrange .p-arrange__lead {
    margin-bottom: 2.134vw;
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 500;
}
.l-arrange .p-arrange__map {
    margin-bottom: 3.2vw;
}
.l-arrange .p-arrange-switch__list {
    display: flex;
    flex-direction: column;
    gap: 12.667vw 0;
    margin-bottom: 13.334vw;
}
.l-arrange .p-arrange-switch__list .slick-dots {
    margin-top: 1.6vw;
}
.l-arrange .p-arrange-switch__list .slick-dots li {
    width: 2vw;
    height: 2vw;
}
.l-arrange .p-arrange-switch__list .slick-dots li button {
    width: 2vw;
    height: 2vw;
    background: #afaa9d;
}
.l-arrange .p-arrange-switch__list .slick-dots li.slick-active button {
    width: 2vw;
    height: 2vw;
    background: url(../img/231003/btn-dots.webp);
    background-repeat: no-repeat;
    background-size: contain;
}
.l-arrange .p-arrange-switch__list .switch {
    margin-bottom: 3.2vw;
}
.l-arrange .p-arrange-switch__list .p-arrange-switch__name {
    font-size: 3.734vw;
    line-height: 1.5;
    font-weight: 700;
    color: #ff5838;
}
.l-arrange .p-arrange-switch__list .p-arrange-switch__text {
    margin-bottom: 2.667vw;
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 300;
}
.l-arrange .p-arrange-slide__list .slick-list {
    overflow: visible;
}
.l-arrange .p-arrange-slide__item {
    display: flex;
    flex-direction: column;
    width: 70.667vw;
    min-height: 10.267vw;
    margin-right: 6.667vw;
}
.l-arrange .p-arrange-slide__item figure {
    margin-bottom: 2.667vw;
}
.l-arrange .p-arrange-slide__item figcaption {
    margin-bottom: 2.134vw;
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 300;
}
.l-arrange .p-arrange-slide__item .p-arrange-slide__btn {
    display: flex;
    gap: 0 5.6vw;
    margin-top: auto;
}
@media screen and (min-width: 751px) {
    .l-arrange {
        padding: 20px 0 124px;
    }
    .l-arrange .c-sec__ttl {
        margin-bottom: 24px;
    }
    .l-arrange .c-sec__ttl::before {
        width: 166px;
        height: 166px;
    }
    .l-arrange .p-arrange__lead {
        margin-bottom: 16px;
        font-size: 24px;
    }
    .l-arrange .p-arrange__map {
        margin-bottom: 24px;
    }
    .l-arrange .p-arrange-switch__list {
        gap: 95px 0;
        margin-bottom: 100px;
    }
    .l-arrange .p-arrange-switch__list .slick-dots {
        margin-top: 12px;
    }
    .l-arrange .p-arrange-switch__list .slick-dots li {
        width: 15px;
        height: 15px;
    }
    .l-arrange .p-arrange-switch__list .slick-dots li button {
        width: 15px;
        height: 15px;
    }
    .l-arrange .p-arrange-switch__list .slick-dots li.slick-active button {
        width: 15px;
        height: 15px;
    }
    .l-arrange .p-arrange-switch__list .switch {
        margin-bottom: 24px;
    }
    .l-arrange .p-arrange-switch__list .p-arrange-switch__name {
        font-size: 28px;
    }
    .l-arrange .p-arrange-switch__list .p-arrange-switch__text {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .l-arrange .p-arrange-slide__item {
        width: 530px;
        min-height: 770px;
        margin-right: 50px;
    }
    .l-arrange .p-arrange-slide__item figure {
        margin-bottom: 20px;
    }
    .l-arrange .p-arrange-slide__item figcaption {
        margin-bottom: 16px;
        font-size: 24px;
    }
    .l-arrange .p-arrange-slide__item .p-arrange-slide__btn {
        gap: 0 42px;
    }
}


/* content */
.l-content {
    padding: 2.667vw 0 16vw;
}
.l-content .c-sec__ttl {
    margin-bottom: 10.667vw;
}
.l-content .c-sec__ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 12.4vw;
    height: 12.4vw;
    border-radius: 50vh;
    background: #ff5838;
}
.p-content__lead {
    margin-bottom: 8.667vw;
    font-size: 3.734vw;
    line-height: 1.75;
    font-weight: 500;
    color: #ff5838;
}
.p-content__list {
    display: flex;
    flex-direction: column;
    gap: 10vw 0;
    margin-bottom: 10.934vw;
}
.p-content__list div:not([class]) figure {
    width: 40vw;
    height: 40vw;
    margin-right: 1.867vw;
    float: left;
}
.p-content__list div:not([class]):first-child figure {
    width: 40vw;
    height: 26.4vw;
    margin-right: 1.867vw;
    float: left;
}
.p-content__list div:not([class]) .p-content__name {
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 500;
}
.p-content__list div:not([class]) .p-content__text {
    font-size: 3.2vw;
    line-height: 1.75;
}
@media screen and (min-width: 751px) {
    .l-content {
        padding: 20px 0 120px;
    }
    .l-content .c-sec__ttl {
        margin-bottom: 80px;
    }
    .l-content .c-sec__ttl::before {
        width: 93px;
        height: 93px;
    }
    .p-content__lead {
        margin-bottom: 65px;
        font-size: 28px;
    }
    .p-content__list {
        gap: 75px 0;
        margin-bottom: 82px;
    }
    .p-content__list div:not([class]) figure {
        width: 300px;
        height: 300px;
        margin-right: 14px;
    }
    .p-content__list div:not([class]):first-child figure {
        width: 300px;
        height: 198px;
        margin-right: 14px;
    }
    .p-content__list div:not([class]) .p-content__name {
        font-size: 24px;
    }
    .p-content__list div:not([class]) .p-content__text {
        font-size: 24px;
    }
}


/* campaign */
.l-campaign {
    padding-top: 2.667vw;
}
.l-campaign .c-sec__ttl {
    margin-bottom: 8.667vw;
}
.l-campaign .c-sec__ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 12.4vw;
    height: 12.4vw;
    border-radius: 50vh;
    background: #ff5838;
}
.l-campaign .p-campaign__list {
    display: flex;
    flex-direction: column;
    gap: 14vw 0;
}
.l-campaign .p-campaign__item figure {
    margin-bottom: 4.267vw;
}
.l-campaign .p-campaign__item .p-campaign__name {
    font-size: 4.267vw;
    line-height: 1.75;
    font-weight: 700;
}
.l-campaign .p-campaign__item .p-campaign__period li {
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 500;
}
.l-campaign .p-campaign__item .p-campaign__period li span {
    font-weight: 400;
}
.l-campaign .p-campaign__item .p-campaign__notice {
    margin-bottom: 6.4vw;
    font-size: 3.2vw;
    line-height: 1.75;
}
.l-campaign .p-campaign__item .p-campaign__text {
    margin-bottom: 3.467vw;
    font-size: 3.2vw;
    line-height: 1.75;
}
@media screen and (min-width: 751px) {
    .l-campaign {
        padding-top: 20px;
    }
    .l-campaign .c-sec__ttl {
        margin-bottom: 65px;
    }
    .l-campaign .c-sec__ttl::before {
        width: 93px;
        height: 93px;
    }
    .l-campaign .p-campaign__list {
        gap: 105px 0;
    }
    .l-campaign .p-campaign__item figure {
        margin-bottom: 32px;
    }
    .l-campaign .p-campaign__item .p-campaign__name {
        font-size: 32px;
    }
    .l-campaign .p-campaign__item .p-campaign__period li {
        font-size: 24px;
    }
    .l-campaign .p-campaign__item .p-campaign__notice {
        margin-bottom: 48px;
        font-size: 24px;
    }
    .l-campaign .p-campaign__item .p-campaign__text {
        margin-bottom: 26px;
        font-size: 24px;
    }
}    


/* sns */
.l-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10.667vw;
    height: 14.934vw;
    background: #dfdad6;
}
.l-sns a {
    position: relative;
    z-index: 10;
}
@media screen and (min-width: 751px) {
    .l-sns {
        gap: 0 80px;
        height: 112px;
    }
}    


.notice {
	font-size: 4.267vw;
    line-height: 1.75;
	text-align: center;
}
@media screen and (min-width: 751px) {
	.notice {
		font-size: 16px;
	}
}