@charset "UTF-8";
:root {
	--wp--preset--spacing--10: clamp(0.875rem, 0.837rem + 0.19vw, 1rem);
	--wp--preset--spacing--20: clamp(1.125rem, 0.856rem + 1.35vw, 2rem);
	--wp--preset--spacing--30: clamp(1.25rem, 0.712rem + 2.69vw, 3rem);
	--wp--preset--spacing--40: clamp(1.5rem, 0.731rem + 3.85vw, 4rem);
	--wp--preset--spacing--50: clamp(1.75rem, 0.75rem + 5vw, 5rem);
	--wp--preset--spacing--60: clamp(2rem, 0.769rem + 6.15vw, 6rem);
	--wp--preset--spacing--70: clamp(2.25rem, 0.558rem + 8.46vw, 7.75rem);
	--wp--preset--spacing--80: clamp(2.5rem, 0.192rem + 11.54vw, 10rem);
}
/* Editor Screen */
.editor-styles-wrapper {
	background: #2c2a2b;
	color: #dbdad6;
	
}
.editor-styles-wrapper .wp-block:not(.editor-post-title__input),
.editor-styles-wrapper .wp-block-spacer {
	border:1px dashed #999;
}

/* 汎用性Tag */
.entry-content {
	line-height: 1.375;
	letter-spacing: 0.05em;
}
.entry-content h1 ,
.entry-content h2 ,
.entry-content h3 ,
.entry-content h4 ,
.entry-content h5 ,
.entry-content h6 {
	margin-bottom:1rem;
}
.entry-content p ,
.entry-content ul ,
.entry-content ol:not(.breadcrumb) ,
.entry-content dl {
	margin-bottom:1rem;
}
.entry-content h3 {
	font-size: clamp(1.25rem, 1.173rem + 0.38vw, 1.5rem);
}
.entry-content p:not(.has-large-font-size):not(.has-huge-font-size) ,
.entry-content li {
	line-height: 1.75;
}

.entry-content ul.wp-block-list {
	margin-top:0;
	margin-left: 1em;
	padding-left: 1em;
}
.entry-content ul.wp-block-list li::marker {
	content: "- ";
}
.entry-content>*:first-child {
	margin-top:0;
}
.entry-content>*:last-child {
	margin-bottom:0;
}
/* Layout */
.alignfull {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.alignwide {
	margin-left: calc(25% - 25vw);
	margin-right: calc(25% - 25vw);
}
.is-layout-flex {
	display: flex;
}
.wp-block-group.is-style-inner-container .wp-block-group__inner-container ,
.wp-block-cover.is-style-inner-container .wp-block-cover__inner-container {
	width:100%;
	max-width: calc(var(--container) + var(--gutter));
	margin-left: auto;
	margin-right: auto;
	padding-left: calc(var(--gutter) / 2);
	padding-right: calc(var(--gutter) / 2);
}
@media (min-width: 1360px) {
.wp-block-cover.is-style-inner-container.alignfull.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,
.wp-block-cover.is-style-inner-container.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container, 
.wp-block-cover.is-style-inner-container.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container{ 
	margin-left: calc((100vw - (var(--container) + var(--gutter))) / 2);
	margin-right: auto;
}
.wp-block-cover.is-style-inner-container.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container, 
.wp-block-cover.is-style-inner-container.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container, 
.wp-block-cover.is-style-inner-container.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container {
	margin-left: auto;
	margin-right: calc((100vw - (var(--container) + var(--gutter))) / 2);
}
}
@media (max-width: 1024px) {
.wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax, .wp-block-cover__image-background.has-parallax, video.wp-block-cover__video-background.has-parallax {
	background-attachment: scroll;
}
}
/**/
.elementsheight .wp-block-column>.wp-block-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
/* Font Size */
.has-small-font-size {
	font-size: clamp(0.75rem, 0.712rem + 0.19vw, 0.875rem) !important;
}
.has-medium-font-size {
	font-size: clamp(1rem, 0.962rem + 0.19vw, 1.125rem) !important;
}
.has-large-font-size {
	font-size: clamp(1.25rem, 1.019rem + 1.15vw, 2rem) !important;
}
.has-huge-font-size {
	font-size: clamp(2rem, 1.846rem + 0.77vw, 2.5rem) !important;
}

/* Font Family */
.is-style-Poppins {
	font-family: var(--ff2);
}

/* 文字色クラス */
.has-black-color { color: #11120d; }
.has-text-color-color { color: #dbdad6; }
.has-white-color { color: #fff; }
.has-white-gray-color { color: #fffdfd; }
.has-light-gray-1-color { color: #cbcad0; }
.has-light-gray-2-color { color: #a2a19d; }
.has-light-gray-3-color { color: #8f8f91; }
.has-gray-color { color: #646560; }
.has-dark-gray-color { color: #424240; }
.has-yellow-color { color: #f4d03f; }
.has-green-color { color: #3fc380; }

/* 背景色クラス */
.has-black-background-color { background-color: #11120d; }
.has-text-color-background-color { background-color: #dbdad6; }
.has-white-background-color { background-color: #fff; }
.has-white-gray-background-color { background-color: #fffdfd; }
.has-light-gray-1-background-color { background-color: #cbcad0; }
.has-light-gray-2-background-color { background-color: #a2a19d; }
.has-light-gray-3-background-color { background-color: #8f8f91; }
.has-gray-background-color { background-color: #646560; }
.has-dark-gray-background-color { background-color: #424240; }
.has-yellow-background-color { background-color: #f4d03f; }
.has-green-background-color { background-color: #3fc380; }

/* リンク色クラス */
.has-link-color a,
.wp-block-navigation a,
.wp-block-navigation-link a { color: inherit; }

.has-black-color.has-link-color a { color: #11120d; }
.has-text-color-color.has-link-color a { color: #dbdad6; }
.has-white-color.has-link-color a { color: #fff; }
.has-white-gray-color.has-link-color a { color: #fffdfd; }
.has-light-gray-1-color.has-link-color a { color: #cbcad0; }
.has-light-gray-2-color.has-link-color a { color: #a2a19d; }
.has-light-gray-3-color.has-link-color a { color: #8f8f91; }
.has-gray-color.has-link-color a { color: #646560; }
.has-dark-gray-color.has-link-color a { color: #424240; }
.has-yellow-color.has-link-color a { color: #f4d03f; }
.has-green-color.has-link-color a { color: #3fc380; }

/* ボーダー色クラス（オプション） */
.has-black-border-color { border-color: #11120d; }
.has-text-color-border-color { border-color: #dbdad6; }
.has-white-border-color { border-color: #fff; }
.has-white-gray-border-color { border-color: #fffdfd; }
.has-light-gray-1-border-color { border-color: #cbcad0; }
.has-light-gray-2-border-color { border-color: #a2a19d; }
.has-light-gray-3-border-color { border-color: #8f8f91; }
.has-gray-border-color { border-color: #646560; }
.has-dark-gray-border-color { border-color: #424240; }
.has-yellow-border-color { border-color: #f4d03f; }
.has-green-border-color { border-color: #3fc380; }

/* エディター内でのプレビュー用 */
.editor-styles-wrapper .has-black-color { color: #11120d; }
.editor-styles-wrapper .has-text-color-color { color: #dbdad6; }
.editor-styles-wrapper .has-white-color { color: #fff; }
.editor-styles-wrapper .has-white-gray-color { color: #fffdfd; }
.editor-styles-wrapper .has-light-gray-1-color { color: #cbcad0; }
.editor-styles-wrapper .has-light-gray-2-color { color: #a2a19d; }
.editor-styles-wrapper .has-light-gray-3-color { color: #8f8f91; }
.editor-styles-wrapper .has-gray-color { color: #646560; }
.editor-styles-wrapper .has-dark-gray-color { color: #424240; }
.editor-styles-wrapper .has-yellow-color { color: #f4d03f; }
.editor-styles-wrapper .has-green-color { color: #3fc380; }

.editor-styles-wrapper .has-black-background-color { background-color: #11120d; }
.editor-styles-wrapper .has-text-color-background-color { background-color: #dbdad6; }
.editor-styles-wrapper .has-white-background-color { background-color: #fff; }
.editor-styles-wrapper .has-white-gray-background-color { background-color: #fffdfd; }
.editor-styles-wrapper .has-light-gray-1-background-color { background-color: #cbcad0; }
.editor-styles-wrapper .has-light-gray-2-background-color { background-color: #a2a19d; }
.editor-styles-wrapper .has-light-gray-3-background-color { background-color: #8f8f91; }
.editor-styles-wrapper .has-gray-background-color { background-color: #646560; }
.editor-styles-wrapper .has-dark-gray-background-color { background-color: #424240; }
.editor-styles-wrapper .has-yellow-background-color { background-color: #f4d03f; }
.editor-styles-wrapper .has-green-background-color { background-color: #3fc380; }

/* 特定のブロック用のスタイル調整 */
.wp-block-button .wp-block-button__link.has-black-background-color { background-color: #11120d; }
.wp-block-button .wp-block-button__link.has-text-color-background-color { background-color: #dbdad6; }
.wp-block-button .wp-block-button__link.has-white-background-color { background-color: #fff; }
.wp-block-button .wp-block-button__link.has-white-gray-background-color { background-color: #fffdfd; }
.wp-block-button .wp-block-button__link.has-light-gray-1-background-color { background-color: #cbcad0; }
.wp-block-button .wp-block-button__link.has-light-gray-2-background-color { background-color: #a2a19d; }
.wp-block-button .wp-block-button__link.has-light-gray-3-background-color { background-color: #8f8f91; }
.wp-block-button .wp-block-button__link.has-gray-background-color { background-color: #646560; }
.wp-block-button .wp-block-button__link.has-dark-gray-background-color { background-color: #424240; }
.wp-block-button .wp-block-button__link.has-yellow-background-color { background-color: #f4d03f; }
.wp-block-button .wp-block-button__link.has-green-background-color { background-color: #3fc380; }

/* アクセシビリティを考慮したコントラスト調整 */
.has-black-background-color { color: #fff; }
.has-dark-gray-background-color { color: #fff; }
.has-gray-background-color { color: #fff; }
.has-green-background-color { color: #fff; }
.has-yellow-background-color { color: #11120d; }
.has-white-background-color { color: #11120d; }
.has-white-gray-background-color { color: #11120d; }
.has-light-gray-1-background-color { color: #11120d; }
.has-light-gray-2-background-color { color: #11120d; }
.has-light-gray-3-background-color { color: #fff; }
.has-text-color-background-color { color: #11120d; }

/**/

.is-style-btn-line {
	
}
/* Table */
.wp-block-table table {
	border:2px solid var(--c6);
}
.wp-block-table table th ,
.wp-block-table table td {
	border:1px solid var(--c3);
}
.wp-block-table.is-style-price-weekdays table th ,
.wp-block-table.is-style-price-weekdays table td ,
.wp-block-table.is-style-price-holidays table th ,
.wp-block-table.is-style-price-holidays table td ,
.wp-block-table.is-style-price-servicedays table th ,
.wp-block-table.is-style-price-servicedays table td {
	border-width: 1px 0;
}
.wp-block-table table thead {
	border-bottom: 2px solid var(--c6);
}
.wp-block-table.is-style-price-weekdays table thead th {
	background-color: #4c5153;
}
.wp-block-table.is-style-price-holidays table thead th {
	background-color: #555052;
}
.wp-block-table.is-style-price-servicedays table thead th {
	background-color: #525150;
}
.wp-block-table.is-style-price-weekdays table thead td {
	background-color: #3c3e3f;
}
.wp-block-table.is-style-price-holidays table thead td {
	background-color: #413e3f;
}
.wp-block-table.is-style-price-servicedays table thead td {
	background-color: #3f3e3e;
}


/* Display */
@media (max-width: 781px) {
.entry-content .is-sp {
	display: block;
}
.entry-content .is-pc {
	display: none;
}
}
@media (min-width: 782px) {
.entry-content .is-sp {
	display: none;
}
.entry-content .is-pc {
	display: block;
}
}







a.wp-block-button__link {
	text-decoration: none !important;
}
a.wp-block-button__link:hover {
	opacity: 0.75;
}
.is-style-service-right-style .swiper-container ,.is-style-service-left-style .swiper-container {
	overflow: hidden;
	
}
.wp-block-custom-keyvisual.is-style-image-only .bg-image>div {
width: 100%;
height: 100vh;
background-size: cover;
background-position: center center;
}
.section-keyvisual {
overflow: hidden;
}
.section-keyvisual .background-slide-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.section-keyvisual .background-slide-img {
width: 100%;
height: 100vh;
min-height: 500px;
}
.section-keyvisual .background-slide-img .swiper-slide > div {
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.section-keyvisual .background-slide-img .swiper-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.section-keyvisual .background-slide-img .swiper-wrapper,
.section-keyvisual .background-slide-img .swiper-slide > div {
    height: 100%;
    width: 100%;
}
.section-keyvisual .background-slide-img .swiper-slide > div {
    width: 120%;
    height: 120%;
    transform-origin: center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-keyvisual .background-slide-img .swiper-slide.kv-2 > div,
.section-keyvisual .background-slide-img .swiper-slide.kv-3 > div,
.section-keyvisual .background-slide-img .swiper-slide.kv-4 > div,
.section-keyvisual .background-slide-img .swiper-slide.kv-5 > div {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes keyvisualZoomUpStrong {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
.section-keyvisual .background-slide-img .swiper-slide-active > div, 
.section-keyvisual .background-slide-img .swiper-slide-duplicate-active > div, 
.section-keyvisual .background-slide-img .swiper-slide-prev > div {
    animation: keyvisualZoomUpStrong 16s ease-out 0s infinite normal both;
}
@media (min-width: 768px) {
.wp-block-custom-keyvisual.is-style-image-only .bg-image>div {
background-attachment: fixed;
}
}
/* Column */
.wp-block-columns.is-style-gutter1 {
	gap:var(--gutter);
}
.wp-block-columns.is-style-gutter2 {
	gap: calc(var(--gutter) * 2);
}
/**/
.is-style-strong-small strong {
	font-size:1.5em;
}
.is-style-strong-small small {
	font-size:0.7em;
}
/*  */
.wp-block-separator {
	border-color: color-mix(in srgb, var(--c2) 10%, transparent);
}
/* card Column */
.wp-block-custom-card-column [class^="col-"] {
	padding-bottom: var(--gutter);
}
.wp-block-custom-card-column.is-style-toptracer .card-title {
	text-align: center;
	font-size: clamp(1.25rem, 1.019rem + 1.15vw, 2rem);
	color: var(--c7);
}
.wp-block-custom-card-column.is-style-toptracer .card-link {
	text-align: right;
}
.wp-block-custom-card-column.is-style-numbering {
	counter-reset: number 0;
}
.wp-block-custom-card-column.is-style-numbering [class^="col-"] .card-title {
	font-size:clamp(1.125rem, 1.087rem + 0.19vw, 1.25rem);
	position: relative;
	display: flex;
	align-items: center;
}
.wp-block-custom-card-column.is-style-numbering [class^="col-"] .card-title::before {
	counter-increment: number 1;
	content: counter(number,decimal-leading-zero) " ";
	font-size: clamp(2rem, 1.385rem + 3.08vw, 4rem);
	color: var(--c3);
	line-height: 1;
	padding-right: 0.25em;
	font-family: var(--ff2);
}



/* card */
.wp-block-custom-price-card {
	
}
.wp-block-custom-price-card .card-title {
	position: relative;
    font-size:clamp(1.25rem, 1.173rem + 0.38vw, 1.5rem);
}
.wp-block-custom-price-card .card-title::before {
	content: attr(data-label);
	display: block;
	color: var(--c8);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	white-space: nowrap;
	font-weight: 400;
	font-family: var(--ff2);
	font-size: clamp(1.125rem, 0.856rem + 1.35vw, 2rem);
}
.wp-block-custom-price-card .card-title.card-label-large::before {
	font-size: clamp(1.5rem, 1.192rem + 1.54vw, 2.5rem);
}
.wp-block-custom-price-card .card-title.card-label-xlarge::before {
	font-size: clamp(2rem, 1.692rem + 1.54vw, 3rem);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.wp-block-custom-price-card.block-style-square-style .card-img img {
	aspect-ratio: 1 / 1;
}
.wp-block-custom-price-card.block-style-square-style .card-img-overlay {
	padding: var(--gutter);
}
.wp-block-custom-price-card.block-style-square-style .card-title {
	text-align: center;
	font-size:clamp(1.125rem, 1.087rem + 0.19vw, 1.25rem);
}
.wp-block-custom-price-card.block-style-square-style .card-title::before {
	text-align: center;
	color: var(--c4);
	letter-spacing: -0.05em;
}
.wp-block-custom-price-card.is-style-event-style .card-img-overlay {
	padding: calc(var(--gutter) / 1.5);
}
.wp-block-custom-price-card.is-style-event-style .card-title {
	position: relative;
	padding-top:1.5em;
	font-size:clamp(1.125rem, 1.087rem + 0.19vw, 1.25rem);
}
.wp-block-custom-price-card.is-style-event-style .card-title::before {
	font-size: clamp(0.875rem, 0.837rem + 0.19vw, 1rem);
	display: inline-block;
	padding:0.25em 1em;
	color: #fff;
	border-radius: 3rem;
	background: linear-gradient(to right, #006036 0%, #009245 100%);
	position: absolute;
	top:0;
	left: 0;
}
.wp-block-custom-price-card.block-style-vertical-style .card-img img {
	aspect-ratio: 3 / 4;
}

/**/
.wp-block-custom-media-slideshow-text__media {
	overflow: hidden;
}
.wp-block-custom-media-slideshow-text {
    direction: ltr;
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: auto
}
.editor-styles-wrapper .wp-block-custom-media-slideshow-text {
    display: block;
}
.wp-block-custom-media-slideshow-text.has-media-on-the-right {
    grid-template-columns: 1fr 50%;
}

.wp-block-custom-media-slideshow-text.has-media-on-the-right>.wp-block-custom-media-slideshow-text__media {
    /*!rtl:begin:ignore*/
    grid-column: 2;
    grid-row: 1 /*!rtl:end:ignore*/
}

.wp-block-custom-media-slideshow-text.has-media-on-the-right>.wp-block-custom-media-slideshow-text__content {
    /*!rtl:begin:ignore*/
    grid-column: 1;
    grid-row: 1 /*!rtl:end:ignore*/
}
.wp-block-custom-media-slideshow-text__content {
    width: 100%;
    max-width: calc((var(--container) + var(--gutter)) / 2);
    padding: var(--gutter);
}

.wp-block-custom-media-slideshow-text.is-vertically-aligned-top>.wp-block-custom-media-slideshow-text__content,
.wp-block-custom-media-slideshow-text.is-vertically-aligned-top>.wp-block-custom-media-slideshow-text__media {
    align-self: start
}

.wp-block-custom-media-slideshow-text.is-vertically-aligned-center>.wp-block-custom-media-slideshow-text__content,
.wp-block-custom-media-slideshow-text.is-vertically-aligned-center>.wp-block-custom-media-slideshow-text__media,
.wp-block-custom-media-slideshow-text>.wp-block-custom-media-slideshow-text__content,
.wp-block-custom-media-slideshow-text>.wp-block-custom-media-slideshow-text__media {
    align-self: center
}

.wp-block-custom-media-slideshow-text.is-vertically-aligned-bottom>.wp-block-custom-media-slideshow-text__content,
.wp-block-custom-media-slideshow-text.is-vertically-aligned-bottom>.wp-block-custom-media-slideshow-text__media {
    align-self: end
}
@media (min-width: 992px) {
    .wp-block-custom-media-slideshow-text .wp-block-custom-media-slideshow-text__content {
        margin-right: auto;
        padding: 0 calc(var(--gutter) / 2) 0 var(--col);
    }
    .wp-block-custom-media-slideshow-text.has-media-on-the-right .wp-block-custom-media-slideshow-text__content {
        margin-right: 0;
        margin-left: auto;
        padding: 0 var(--col) 0 calc(var(--gutter) / 2);
	}
}

@media (max-width: 600px) {
	.wp-block-media-text>.wp-block-media-text__content {
	    padding: var(--gutter);
	}
    .wp-block-custom-media-slideshow-text {
        grid-template-columns:100%!important
    }
	.wp-block-custom-media-slideshow-text.has-media-on-the-right>.wp-block-custom-media-slideshow-text__media,
    .wp-block-custom-media-slideshow-text>.wp-block-custom-media-slideshow-text__media {
        grid-column: 1;
        grid-row: 1
    }
.wp-block-custom-media-slideshow-text.has-media-on-the-right>.wp-block-custom-media-slideshow-text__content,
    .wp-block-custom-media-slideshow-text>.wp-block-custom-media-slideshow-text__content {
        grid-column: 1;
        grid-row: 2
    }
}
/* Image Slider Frontend Styles - WordPress Block Specific */

.wp-block-custom-image-slider {
	position: relative;
}

.wp-block-custom-image-slider .slider-container {
    overflow: hidden;
    position: relative;
}

.wp-block-custom-image-slider .slider-wrapper {
    position: relative;
    height: auto;
    overflow: hidden;
}

.wp-block-custom-image-slider .slide {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    visibility: hidden;
    display: none;
}

.wp-block-custom-image-slider .slide.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.wp-block-custom-image-slider .slide-content {
    height: auto;
}

.wp-block-custom-image-slider .slide-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.wp-block-custom-image-slider .slide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.wp-block-custom-image-slider .slide-counter {
	position: absolute;
	bottom: calc(var(--gutter) * 1.5);
	right: calc(var(--gutter) * 1.5);
	color: #fff;
	font-size: 36px;
	z-index: 2;
	font-family: var(--ff2);
	line-height: 1;
}
.wp-block-custom-image-slider .slide-counter strong {
	font-size: 72px;
	font-weight: 400;
}

.wp-block-custom-image-slider .slide-text {
	flex: 1;
	padding: 4.16666667%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wp-block-custom-image-slider .slide-title {
    font-size: clamp(1.25rem, 1.019rem + 1.15vw, 2rem);
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards 0.2s;
	font-family: var(--ff2);
}

.wp-block-custom-image-slider .slide-description {
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards 0.4s;
}

.wp-block-custom-image-slider .slide.active .slide-title,
.wp-block-custom-image-slider .slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

.wp-block-custom-image-slider .swiper-pager {
    position: absolute;
    bottom: 4.16666667%;
    right: 0;
    left:auto;
    display: flex;
    justify-content: flex-start;
    z-index: 10;
    width:37.5%;
    padding-left: 4.16666667%;
}

.wp-block-custom-image-slider .swiper-button-prev,
.wp-block-custom-image-slider .swiper-button-next {
    width: calc(var(--gutter) * 3);
    height: calc(var(--gutter) * 3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--easing);
    position: static;
    border: 1px solid var(--c3);
    color:var(--c3);
    outline: none;
    user-select: none;
}
.wp-block-custom-image-slider .swiper-button-next {
	margin-left: calc(var(--gutter) / 3);
}

.wp-block-custom-image-slider .swiper-button-prev:hover ,
.wp-block-custom-image-slider .swiper-button-prev:active ,
.wp-block-custom-image-slider .swiper-button-next:hover ,
.wp-block-custom-image-slider .swiper-button-next:active {
	color: var(--c2);
    border-color: var(--c2);
}

/* 矢印アイコン */
.wp-block-custom-image-slider .swiper-button-prev::after,
.wp-block-custom-image-slider .swiper-button-next::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-style: solid;
    transition: border 0.2s var(--easing);
}

.wp-block-custom-image-slider .swiper-button-prev::after {
    border-width: 2px 0 0 2px;
    border-color: var(--c3);
    transform: rotate(-45deg);
    margin-left: 4px;
}
.wp-block-custom-image-slider .swiper-button-next::after {
    border-width: 2px 2px 0 0;
    border-color: var(--c3);
    transform: rotate(45deg);
    margin-right: 4px;
}
.wp-block-custom-image-slider .swiper-button-prev:hover::after ,
.wp-block-custom-image-slider .swiper-button-prev:active::after ,
.wp-block-custom-image-slider .swiper-button-next:hover::after ,
.wp-block-custom-image-slider .swiper-button-next:active::after {
    border-color: var(--c2);
}

/* スライドインアニメーション */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* フェードイン効果（代替アニメーション） */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media (min-width: 992px) {
.wp-block-custom-image-slider .slide-content {
    display: flex;
}
.wp-block-custom-image-slider .slide-image {
    flex: 1 0 62.5%;
}
.wp-block-custom-image-slider .slide-text {
	flex: 1 0 37.5%;
	padding: 4.16666667%;
}
}
@media (max-width: 991px) {
.wp-block-custom-image-slider .slider-wrapper {
	padding-bottom: calc(var(--gutter) * 4);
}
.wp-block-custom-image-slider .swiper-pager {
    bottom: var(--gutter);
        right: 4.16666667%;
}
}

