:root {
	/* カラーパレット */
	--base-color: #FFFFFF;
	--gray-color: #333333;
	--lightgray-color: #F4F4F4;
	--gray2-color: #B2B2B2;
	--green-back-color: #E4F5EA;
	--light-green-color: #6EB847;
	--green-color: #24A076;
	--green-back2-color: #F4FBF7;

	/* グラデーション */
	--green-gradation: linear-gradient(90deg,  #24A076, #6EB847);
	--green-gradation-45deg: linear-gradient(45deg,  #24A076, #6EB847);
	
	/* サイズ */
	--max-width: 1360px;
}

*:focus,
*:focus-visible {
  outline: none;
  box-shadow: none;
}

:where(h1,h2,h3) {
	line-height: 1.5;
	text-wrap: auto;
}

a {
	opacity: 1;
	transition: 0.2s opacity;
	text-decoration: none;
}

a {
	transition: 0.2s opacity;
}

html {
	margin: 0;
	padding: 0;
	font-size: 16px;
	width: 100%;
}

body {
	width: 100%;
	color: var(--gray-color);
	font-family: "Noto Sans JP", sans-serif;
	line-height: 150%;
	background-color: var(--base-color);
}

body::-webkit-scrollbar{
  display: none;
}

:where(:focus-visible),
:where(:focus) {
	outline: 2px solid var(--green-color);
	box-shadow: 0 0 0 2px var(--light-green-color);
	outline-offset: 1px;
}

/********************************
* Layout
*******************************/
.l-header-wrapper {
	position: sticky;
  top: 0;
  left: 0;
	z-index: 10;
	width: 100%;
}

.l-header {
	background-color: var(--base-color);
	width: 100%;
	height: auto;
}

.l-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-inline: auto;
	padding: 0.75rem 0;
	width: min(calc(100% - 2.5rem), 1360px);
	height: 100%;
	max-width: var(--max-width);
}

@media (min-width : 769px) {
	.l-header-inner {
		padding: 1rem 0;
	}
}

.l-header-nav {
	display: flex;
	gap: 5rem;
}

.menu ul {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: flex-start;
}

@media (min-width: 840px) {
	.menu ul {
		gap: 5rem;
	}
}

.menu a {
	color: var(--gray-color);
	transition: color 0.2s;
}
.menu a:hover {
	color: var(--green-color);
	transition: color 0.2s;
}

/* モバイル対応 */
@media (max-width: 840px) {
  .l-header-nav {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
		height: 0;
    width: 100%;
    background: #fff;
		padding: 0;
    flex-direction: column;
    z-index: 0;
		opacity: 0;
		transition: all 0.3s ease-in-out;
  }
	
  .l-header-nav.is-open {
		overflow: visible;
		height: 100vh;
		padding: 5.375rem 0 1.875rem;
		z-index: 10;
		opacity: 1;
		transition: all 0.3s ease-in-out;
  }

	.l-header-nav nav {
		display: block;
    height: 100%;
	}

	.l-header-nav nav .menu {
		display: block;
    height: 100%;
	}

  .l-header-nav nav .menu ul {
    flex-direction: column-reverse;
    width: 100%;
  }

  .l-header-nav nav .menu li {
		position: relative;
    padding: 1.25rem;
		width: 100%;
  }

	.l-header-nav nav .menu li::after {
		content: '';
		position: absolute;
		right: 2rem;
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
		display: block;
		height: 0.75rem;
		width: 0.75rem;
		border-top: 2px solid var(--green-color);
		border-right: 2px solid var(--green-color);
	}

	.l-header-nav nav .menu a {
		display: block;
		height: 100%;
		width: 100%;
	}

	.l-header-nav nav .menu li:hover::after {
		opacity: .7;
	}

  .l-header-nav .c-sns-list {
    margin-top: 1rem;
    justify-content: center;
  }
}

.l-menu {
	display: flex;
	flex-direction: column;
	justify-content: between;
	align-items: center;
}

.l-menu ul {
  gap: 1.5rem;
}

.l-menu a {
	text-transform: uppercase;
}

/* main */
.l-main {
	overflow: hidden;
	display: block;
	min-height: calc(100vh - 258px);
	width: 100%;
}

/* search form */
.l-seartch {
	background-color: var(--lightgray-color);
	padding: 1rem 0;
	width: 100%;
}

.l-seartch-inner input{
	border: 0;
}

/* main view */
.l-mainview {
	width: 100%;
	height: auto;
}

.l-mainview-inner {
	position: relative;
	height: auto;
}

.l-mainview__image {
	object-fit: cover;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.l-mainview__caption {
	position: absolute;
	top: 10.34722222vw;
	left: 0;
	/* transform: translateY(50%); */
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 0.625rem;
}

@media (max-width: 768px) {
	.l-mainview__caption {
		top: auto;
		left: auto;
		right: 0;
		bottom: -148px;
		width: calc(100% - 3rem);
	}
}

.l-mainview__title {
	position: relative;/*ボックスシャドウの影響を受けない*/
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 0.625rem;
	font-size: 4.5rem;
	font-weight: 700;
	color: var(--base-color);
	line-height: 1.458333333;
}

@media (max-width: 768px) {
	.l-mainview__title {
		font-size: 3rem;
	}
}

.l-mainview__title span {
	background-image: var(--green-gradation);
	padding: 0 1.6875rem;
}

.l-mainview__swiper {
	overflow: hidden;
	width: min(100%, 36rem);
	margin: 0;
	filter: drop-shadow(0 0 0.9375rem rgba(0, 0, 0, 0.2));
}

/* スクロールアニメーション */
.l-scroll {
	position: absolute;
	right: -2.5rem;
	bottom: -3.125rem;
	z-index: 2;
	width: 2.5rem;
	height: 15rem;
}

.l-scroll-inner {
	overflow: hidden;
	position: relative;
	height: 100%;
	width: 100%;
}

.l-scroll-arrow {
	display: none;
}

@media (min-width : 769px) {
	.l-scroll-arrow {
		display: block;
		width: 100%;
		height: 100%;
		color: var(--gray-color);
		font-size: 1.5rem;
		line-height: 1.8;
		writing-mode: vertical-lr;
		transition: .2s;
	}
}

.l-scroll-arrow::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 9.6875rem;
	background: var(--gray-color);	
}

.l-scroll-arrow::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 1rem;
	background: var(--gray-color);
	transform: rotate(22.5deg);
	transform-origin: bottom center;
	transition: .2s;
}

/* followers */
.l-followers {
	overflow: hidden;
	height: auto;
	width: 100%;
}

.l-forrowers-inner {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 1.25rem;
	padding: 3.125rem 0;
	height: calc(195px + 3.125rem * 2);
	width: 100%;
}

@media screen and (max-width: 768px) {
	.l-forrowers-inner {
		padding: 3rem 0 0.25rem;
	}
}

@media screen and (max-width: 1024px) {
	.l-forrowers-inner {
		flex-direction: column;
		height: auto;
		width: 100%;
	}
}

.l-followers_item {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	border-radius: 1.25rem;
	background-image: var(--green-gradation);
	padding: 1.5rem 1.25rem;
	height: 100%;
	width: 27.0625rem;
	color: var(--base-color);
}

@media screen and (max-width: 1024px) {
	.l-followers_item {
		margin-inline: auto;
		padding: 0.5rem 3.125rem;
		width: min(100%, 48rem);
	}
}

.l-followers__title {
	line-height: 1.22916667;
	font-size: 3rem;
	font-weight: 500;
}

@media screen and (max-width: 1024px) {
	.l-followers__title {
		padding-bottom: 0.375rem;
		font-size: 2rem;
		line-height: 1.21875;
	}
}

.l-followers__text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.1875;
}

@media (min-width: 1440px) {
	.l-followers__text {
		font-size: 1.25rem;
	}
}

.l-followers__counter {
	font-size: 2.25rem;
	line-height: 1;
}

@media (min-width: 1440px) {
	.l-followers__counter {
		font-size: 4rem;
	}
}

.l-contents {
	position: relative;
	padding-top: 3.125rem;
	padding-bottom: 3.125rem;
}

@media (min-width: 769px) {
	.l-contents {
		padding-top: 1.5625rem;
		padding-bottom: 3.125rem;
	}
}

.l-contents::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc(50% - 50vw);
	z-index: -1;
	width: 100vw;
	height: 600vw;
	background-image: url(../images/bg.png);
	background-size: cover;
	background-repeat: no-repeat;
}

@media (min-width: 769px) {
	.l-contents::before {
		height: 1799px;
		aspect-ratio: 1440 / 1799;
	}
}

.l-travel {
	margin: 3.125rem calc(50% - 50vw) 0;
	padding: 0 calc(50vw - 50%) 3.125rem;
	width: 100vw;
	background-color: var(--base-color);
}

@media (min-width: 769px) {
	.l-travel {
		margin: 6.25rem calc(50% - 50vw) 0;
		padding: 0 calc(50vw - 50%) 6.25rem;
	}
}

.l-travel__inner {
	height: auto;
}

.l-event {
	margin: 0 calc(50% - 50vw);
	padding: 3.125rem calc(50vw - 50%) 3.125rem;
	width: 100vw;
	background-image: url(../images/bg-02.png);
	background-size: cover;
	background-position: center;
}

@media (min-width: 769px) {
	.l-event {
		margin: 0 calc(50% - 50vw);
		padding: 6.25rem calc(50vw - 50%) 6.25rem;
		}
}

.l-event__inner {
	height: auto;
}

.l-column {
	padding: 3.125rem 0 3.125rem;
	background-size: cover;
	background-position: center;
}

@media (min-width: 769px) {
	.l-column {
		padding: 6.25rem 0 6.25rem;
		}
}

.l-column__inner {
	height: auto;
}

.l-footer {
	background-image: var(--green-gradation);
	padding: 1.875rem 2.5rem;
	color: var(--base-color);
}

@media (min-width : 1024px) {
	.l-footer {
		padding: 3.625rem 0 1.6875rem;
	}
}

.l-footer a {
	opacity: 1;
	transition: .2s all;
}

.l-footer a:hover {
	opacity: .7;
	transition: .2s all;
}

.l-footer-inner {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	align-items: center;
	gap: 1.875rem;
	margin-inline: auto;
	width: min(100%, 1360px);
}

@media (min-width : 1024px) {
	.l-footer-inner {
		gap: 0;
		flex-direction: row;
		align-items: flex-start;
		margin-inline: auto;
    width: min(calc(100% - 2.5rem), 1360px);
	}
}

.l-footer__logo-text {
	display: flex;
	flex-direction: column;
  font-size: 1.5rem;
	line-height: 1.2;
}

@media (min-width : 1024px) {
  .l-footer__logo-text {
    font-size: 2.5rem;
  }
}

@media (max-width : 1023px) {
  .l-footer__nav, .l-footer__logo {
    width: 100%;
  }
}

.l-footer__nav__list-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	margin-inline: auto;
	gap: 1.875rem;
}

@media (min-width: 1024px) {
	.l-footer__nav__list-wrap {
		flex-direction: row;
	}
}

.l-footer__logo {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 1.875rem;
}

@media (min-width: 1024px) {
	.l-footer__logo {
		gap: 3.5625rem;
	}
}

.l-footer__nav__list {
	border-left: 1px solid var(--base-color);
	padding: 0 1.875rem;
}

.l-footer__nav__item {
  word-break: keep-all; 
	line-height: 1.375;
}

.l-footer__nav__item:not(:first-child) {
	margin-top: 0.9375rem;
}

.l-footer__copy {
	width: 100%;
	font-size: 1rem;
	line-height: 1.25;
}

@media (min-width: 1024px) {
	.l-footer__copy {
		width: 18rem;
	}
}

/* サイドバーがある時のmian */
.l-single {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 1.25rem;
	margin-top: 1rem;
	background-color: transparent;
	padding: 0 0 3.125rem;
}

@media (min-width: 769px) {
	.l-single {
		flex-direction: row;
		padding: 0 0 8.75rem;
	}
}

.p-single__content {
  width: 100%;
}

.p-single__thumbnail {
  width: 100%;
  aspect-ratio: 768 / 432;
}

.p-single__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

a.p-single__thumbnail {
  overflow: hidden;
  position: relative;
}
a.p-single__thumbnail > img {
  transition: 0.3s ease;
}
a.p-single__thumbnail:hover > img {
  transform: scale(1.05);
}

.p-single__thumbnail-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.p-single__thumbnail-overlay img {
  width: 10%;
  height: auto;
}

.l-single__article {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
}

@media (min-width : 769px) {
	.l-single__article {
		/* width: min(calc(100% - 27.0625rem)); */
	}
}

.l-aside__page {
	width: 100%;
}

@media (min-width: 769px) {
	.l-aside__page {
		width: 31.94444vw;
		margin: 3.5rem 0 5rem;
	}
}
.l-main-inner__page {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.625rem;
	width: 100%;
}

@media (min-width: 769px) {
	.l-main-inner__page {
		flex-direction: row;
		gap: 1.875rem;
	}
}

.l-main-inner__page-main {
	width: 100%;
}

@media (min-width: 769px) {
	.l-main-inner__page-main {
		minwidth: calc(100% - 31.94444vw);
	}
}

/* サイドバー */
.l-aside {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 3.125rem;
	background-color: var(--base-color);
	width: min(100%, 490px);
}

@media (min-width: 769px) {
	.l-aside {
		width: min(31.94444vw, 490px);
		margin: 3.5rem 0 5rem;
	}
}

.l-main-inner__page-main .p-common-article-item {
	width: calc(50% - 0.3125rem);
}

@media (min-width : 769px) {
	.l-main-inner__page-main .p-common-article-item {
		width: calc(50% - 0.625rem);
	}	
}

.l-aside-header {
	display: flex;
	justify-content: center;
	align-items: center;
}

/********************************
* Project
*******************************/
/* mainview */
.p-toppage-main {
	position: relative;
}

/* mainview article */
.p-mainview-article {
  position: relative;
	display: block;
	margin-right: 0;
	background-color: var(--base-color);
	margin-left: auto;
	padding: 0.9375rem 1.875rem;
	width: min(100%, 36rem);
	transition: .2s color;
}

.c-link__lower:hover .c-article__title,
.p-mainview-article__contributor:hover {
	transition: .2s color;
	color: var(--green-color);
}

@media (min-width : 769px) {
	.p-mainview-article {
		padding: 1.24rem 2.5rem;
	}
}

.p-mainview-article-inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1.25rem;
}

.p-mainview-article a {
  text-decoration: none;
}

.p-mainview-article__meta {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 0.375rem;
	width: 100%;
}

.p-mainview-article__contributor,
.p-mainview-article__date {
	text-align: right;
	line-height: 1.1875;	
}

/* TOPページ　記事 */
.p-common-article {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.625rem;
	height: auto;
	width: 100%;
}

@media (min-width : 769px) {
	.p-common-article {
		gap: 1.75rem 2rem;
	}
}

.p-page .p-common-article {
	margin: 3.5rem auto 5rem;
	gap: 0.625rem;
}

@media (min-width : 769px) {
	.p-page .p-common-article {
		gap: 1.25rem;
	}
}

.p-common-article-item {
	overflow: hidden;
	position: relative;
	filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, .2));
	width: 100%;
}

@media (min-width : 769px) {
	.p-common-article-item {
		width: calc(33% - (2.5rem * 2 / 3));
	}
}

#travel .p-common-article-item ,
#event .p-common-article-item {
	background-color: #fff;
}

.p-page .p-common-article-item {
	filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

@media (min-width : 769px) {
	#event .p-common-article-item {
		width: calc(50% - (2.5rem * 1 / 2));
	}
}

@media (min-width : 1024px) {
	#event .p-common-article-item {
		width: calc(33% - (2.5rem * 2 / 3));
	}
}

#contents .p-common-article-item:first-child {
	margin-inline: auto;
	width: min(100%, 1000px);
}

#contents .p-common-article-item:first-child {
	margin-bottom: 1.25rem;
	width: 100%;
}

#contents .p-common-article-item:not(:first-child) {
	padding-bottom: 0.875rem;
	width: calc(50% - 0.3125rem);
}

#travel .p-common-article-item {
  aspect-ratio: 220 / 392;
  width: 100%;
}

#movie .p-common-article-item {
  aspect-ratio: 220 / 392;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 16px 40px;
}

#movie .p-common-article-item .p-common-article-thumbnail,
#travel .p-common-article-item .p-common-article-thumbnail {
  height: 100%;
}

#movie .p-common-article-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width : 769px) {
  #travel .p-common-article-item {
    aspect-ratio: 320 / 570;
  }
	/* #travel .p-common-article-item:first-child {
		flex-grow: 3;
		width: 100%;
	} */
	
	#contents .p-common-article-item:not(:first-child) {
		padding-bottom: 0;
		width: calc(33% - (2.5rem * 2 / 3));
	}
}

#contents .p-common-article:first-child {
	flex-grow: 3;
	margin-inline: auto;
	width: 100%;
}

@media (min-width : 769px) {
	/* #travel .p-common-article-item:first-child .p-common-article-thumbnail,
	#travel .p-common-article-item:first-child .p-common-article-title-wrap {
		height: 100%;
		width: 50%;
	}

	#travel .p-common-article-item:first-child .p-common-article-title-wrap {
		padding-top: 5.75rem;
		padding-bottom: 5.75rem;
	} */
}

@media (min-width : 769px) {
  #contents .p-common-article-item:first-child .c-article__title {
    font-size: 1.5rem;
  }
}

@media (min-width : 769px) {
	/* #travel .p-common-article-item:first-child .c-article__title {
		margin-top: 0.3125rem;
	} */
}

/* #travel .p-common-article-item:first-child .c-article__title {
	-webkit-line-clamp: 3;
	line-clamp: 3;
} */

@media (min-width : 769px) {
	/* #travel .p-common-article-item:first-child {
		display: flex;
	} */
}

.p-common-article-thumbnail {
	overflow: hidden;
  aspect-ratio: 768 / 432;
}

.p-common-article-thumbnail,
.p-common-article-title-wrap {
	position: relative;
	width: 100%;
}

.p-common-article-item.-contents {
  max-width: 1000px;
  margin-inline: auto;
}

.p-common-article-item.-contents .p-common-article-thumbnail {
  aspect-ratio: 768 / 432;
}

.p-common-article-title-wrap {
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
	padding: 1.25rem 1.125rem;
  gap: 0.5rem 0;
}

#contents .p-common-article-title-wrap {
	padding: 1.25rem 0 0;
}

#event .p-common-article-title-wrap {
	padding: 0.825rem 1.125rem;
}

@media (max-width : 768px) {
	#contents .p-common-article-item:not(:first-child) .p-common-article-title-wrap {
		padding: 0.625rem 0 0;
	}
}

.p-common-article-title-wrap *{
	transition: .2s;
}

.c-link__puton:hover .c-name__author,
.c-link__lower:hover .c-article__title {
	transition: .2s;
	color: var(--green-color);
}

.c-link__thumbnail:hover .c-thumbnail {
	transition: .2s transform;
	transform: scale(1.1);
}

.c-link__puton:hover .c-category {
	background-color: var(--green-color);
	transition: .2s;
}

.c-link__lower:hover ~ .p-common-article__author .c-avatar-wrap-02,
.c-name__author:hover,
.c-avatar-wrap:hover {
	opacity: .7;
	background-color: var(--base-color);
	transition: .2s;
}

.p-common-article-thumbnail .c-link__lower {
	width: 100%;
	height: 100%;
}

.p-common-article__author {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.625rem;
	margin-top: 1.875rem;
}

@media (min-width : 769px) {
	.p-common-article__author {
		margin-top: 3.75rem;
	}
}

.p-common-article__notfound {
	padding: 3.125rem 0;
	font-size: 1.5rem;
	text-align: center;
	width: 100%;
}

/* page 固定ページ */
.p-page__header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.875rem;
	height: 9.375rem;
	width: 100%;
	background-image: url(../images/bg-page-title.png);
	background-size: cover;
	background-position: center;
}

@media (min-width : 769px) {
	.p-page__header {
		height: 18.75rem;
	}
}

.p-page__header-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5rem 1.875rem;
	background-image: var(--green-gradation);
}

@media (min-width : 769px) {
	.p-page__header-inner {
		padding: 0.53125rem 3.71875rem;
	}
}

.p-page__title {
	font-size: 3rem;
	color: var(--base-color);
}

@media (min-width : 769px) {
	.p-page__title {
		font-size: 4.5rem;
	}
}

/* single　投稿ページ */
.p-single {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.p-single__header {
	position: relative;
	gap: 1.875rem;
	height: auto;
	width: 100%;
}

.p-single__header::before {
	content: "";
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: var(--header-height, calc(18.75rem + 2.625rem));
	background-image: url(../images/bg-page-title.png);
	background-size: cover;
	background-position: center;
	z-index: -1;
	background-repeat: no-repeat;
}

.p-single__title {
	margin-top: 3.125rem;
	min-height: 6.75rem;
	font-size: 2.25rem;
	line-height: 1.5;
}

@media (max-width : 767px) {
  .p-single__title {
    font-size: 1.5rem;
  }
}
.p-single__title {
}

.p-single__meta {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.625rem;
	margin-top: 1.0625rem;
}

/* aside__single サイドバー */
.p-aside-section {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	gap: 1.5rem;
	padding: 1.25rem 0 1.25rem;
	width: 100%;
}

.p-aside__title {
	position: relative;
	margin-bottom: 0 0 0.625rem;
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-aside__title::after {
	content: "";
	position: absolute;
	bottom: -0.625rem;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--green-color);
}

.p-aside__list  {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 1.5rem;
	height: auto;
	width: 100%;
}

.p-aside__item {
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1.25rem;
	height: auto;
	width: 100%;
	transition: .2s all;
}

.p-aside__link:hover .p-aside__link {
	overflow: hidden;
	transition: .2s all;
}

.p-aside__link:hover .p-aside__post_type {
	transition: .2s all;
	opacity: 0.7;
}

.p-aside__thumbnail-wrap:hover .p-aside__thumbnail img {
	transition: .2s all;
	opacity: 0.7;
	transform: scale(1.1);
}

.c-category:hover  {
	background-color: var(--green-color);
	transition: .2s all;
}

.p-aside__link:hover .p-aside__item-title {
	color: var(--green-color);
	transition: .2s all;
}

.l-aside__page .p-aside__item {
	width: 100%;
	border-bottom: 1px solid var(--gray-color);
}


.l-aside__page .p-aside__link {
	display: block;
	font-family: "Alexandria", sans-serif;
	font-weight: 500;
  font-optical-sizing: auto;
	line-height: 1.375;
	transition: .2s opacity;
	color: var(--gray-color);
}

@media (min-width : 769px) {
	.l-aside__page .p-aside__link {
		font-size: 1.25rem;
		line-height: 1.25;
	}
}

.l-aside__page .p-aside__link:hover {
	transition: .2s opacity;
	opacity: 0.7;
}

.l-aside__page .current .p-aside__link {
	color: var(--green-color);
}

.l-aside__page .p-aside__section {
	margin-top: 1.875rem;
	padding-bottom: 1.25rem;
}

.l-aside__page .p-aside__section:nth-child(2) {
	margin-bottom: 1.875rem;
}

@media (min-width : 769px) {
	.l-aside__page .p-aside__section:nth-child(2) {
		margin-bottom: 5rem;
	}
}

.p-aside__thumbnail-wrap {
	flex-grow: 1;
	height: 100%;
	width: 50%;
  aspect-ratio: 232 / 122;
}

.p-aside__link {
	width: 100%;
	height: 100%;
}

.p-aside__thumbnail {
	overflow: hidden;
	width: 100%;
	/* min-height: 113px; */
	height: 100%;
  object-fit: cover;
}

/* @media (min-width : 769px) {
	.p-aside__thumbnail {
		height: 113px;
	}
} */

.p-aside__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  vertical-align: bottom;
}

.p-aside__title-wrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	flex-grow: 1;
	width: 50%;
}

.p-aside__item-title {
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-aside__post_type {
	margin-top: 0.3125rem;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.115;

}

.p-aside__post_type::before {
	content: "#";
}

/* 404 */
.p-error {
  padding: 180px 0;
  height: 80vh;
  display: flex;
}

.p-error__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.p-error__inner * {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.p-error__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  gap: 24px;
  text-transform: uppercase;
  color: var(--color-main-green);
}

.p-error__heading .-large {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .p-error__heading .-large {
    font-size: 120px;
  }
}

.p-error__heading .-normal {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-error__heading .-normal {
    font-size: 16px;
  }
}


/********************************
* Components
*******************************/
.c-inner {
	margin-inline: auto;
	width: min(calc(100% - 2.5rem), 1360px);
}

.c-font-en {
  font-family: "Alexandria", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
	text-transform: uppercase;
}

.c-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* link関連 */
.c-link__puton {
	display: inline-block;
	position: relative;
	z-index: 1;
  transition: .2s;
}

.c-link__lower {
	display: block;
	z-index: 0;
	transition: .2s;
}

.c-link__lower::before {
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.c-link__thumbnail {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
	transition: .2s transform;
}

/* 記事関連 */
.c-article__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
	line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
	/* margin-top: 1.5625rem; */
  text-overflow: ellipsis;
	overflow-wrap: break-word;
  word-break: break-word;
	width: 100%;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--gray-color);
	min-height: 3rem;
}

@media (max-width : 768px) {
	.c-article__title {
		min-height: 0;
		/* margin-top: 0.3125rem; */
	}
}

.p-mainview-article .c-article__title {
	-webkit-line-clamp: 3;
	line-clamp: 3;
	line-height: 1.2;
	font-weight: 500;
	font-size: 1.5rem;
}

/* logo関連 */
.c-logo {
	font-family: "Alexandria", sans-serif;
	font-size: 0.918125rem;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	color: var(--green-color);
}

@media (min-width : 769px) {
	.c-logo {
		font-size: 1.5rem;
  }
}

.c-logo__img {
	display: block;
	height: auto;
	width: 82px;
}

@media (min-width : 769px) {
	.c-logo__img {
		height: auto;
		width: 120px;
	}
}

.c-logo-link {
	position: relative;
	z-index: 20;
	opacity: 1;
	transition: .2s all;
}

.c-logo-link:hover {
	opacity: 0.7;
	transition: .2s all;
}

/* header nav 関連 */
.c-nav-list li a {
	font-weight: 500;
}

/* sns関連 */
.c-sns-list {
	display: flex;
	gap: 1.4375rem;
}

.c-sns-item {
	flex-shrink: 0;
}

.c-sns-link {
	display: block;
	height: 1.990625rem;
	width: auto;
}

.c-sns-link:hover {
	opacity: 0.7;
	transition: .2s all;
}

.c-sns-image {
	display: block;
	height: 100%;
	width: auto;
}

/* サーチ関連 */
.search-form {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.c-seartch-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	border: 1px solid var(--gray2-color);
	border-radius: 2.5rem;
	margin-left: auto;
	background-color: var(--base-color);
	padding: 0.343rem 1rem;
  font-size: 1rem;
	width: 100%;
}

@media (min-width : 769px) {
	.c-seartch-wrap {
		padding: 0.6875rem 1.25rem;
		width: auto;
	}
}

.c-search-input {
	padding-block: 0;
	padding-inline: 0;
	border-width: 0;
	height: 100%;
	width: 100%;
	background-color: var(--base-color);
}

@media (min-width : 769px) {
	.c-search-input {
		width: clamp(320px, 33%, 500px);
	}
}

.c-search-input:focus,
.c-search-input:focus-visible {
	outline-offset: none;
	box-shadow: 0 0 0 0 var(--green-color);
}
	
.c-search-image {
	width: 1.25rem;
	height: 1.25rem;
}
	
.c-search-image:hover {
	opacity: 0.7;
	transition: .2s all;
}

.c-search-button {
	display: inline-block;
	height: 100%;
	width: 1.25rem;
	border: 0;
}

/* followers */
.c-followers-wrap {
	width: calc(100% - 27.0625rem - 0.625rem);
}

@media screen and (max-width: 1200px) {
	.c-followers-wrap {
		margin-inline: auto;
		border-radius: 1.25rem;
		background-color: var(--base-color);
		width: min(100%, 48rem);
	}
}
.c-followers {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 0.625rem;
	height: 100%;
	width: 100%;
	color: var(--green-color);
}

@media screen and (max-width: 1024px) {
	.c-followers {
		margin-inline: auto;
		flex-direction: column;
		padding: 0.625rem 1.75rem;
		width: min(100%, 31.875rem);
	}
}

.c-followers-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 0.625rem;
	padding: 1.875rem 3%;
	border-radius: 1.25rem;
	background-color: var(--base-color);
	height: 100%;
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.c-followers-item {
		flex-direction: row;
		padding: 0;
	}
}

.c-followers__header {
	display: flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.625rem;
}

@media (max-width : 1024px) {
	.c-followers__header {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width : 768px) {
	.c-followers__header {
		width: 1.7rem;
	}
}

.c-followers-item:nth-child(1) .c-followers__icon {
	flex-shrink: 0;
	display: block;
	width: 4.125rem;
	height: 2.875rem;
}
.c-followers-item:nth-child(2) .c-followers__icon {
	flex-shrink: 0;
	display: block;
	width: 2.875rem;
	height: 2.875rem;
}
.c-followers-item:nth-child(3) .c-followers__icon {
	flex-shrink: 0;
	display: block;
	width: 2.75rem;
	height: 2.875rem;
}	

@media (max-width : 768px) {
	.c-followers-item:nth-child(1) .c-followers__icon {
		width: 1.7rem;
		height: auto;
	}
	.c-followers-item:nth-child(2) .c-followers__icon {
		width: 1.69rem;
		height: auto;
	}
	.c-followers-item:nth-child(3) .c-followers__icon {
		width: 1.25rem;
		height: auto;
	}	
}

.c-followers__title {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.c-followers__title {
		display: none;
	}
}

.c-followers__counter {
	position: relative;
	height: auto;
	width: 100%;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1.225;
	text-align: center;
}

@media (max-width : 1024px) {
	.c-followers__counter {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: flex-end;
		gap: 0.625rem;
		font-size: 1.5rem;
		line-height: 1.2;
	}
}

.c-followers__counter::before {
	content: "";
	display: block;
	margin-bottom: 0.625rem;
	width: var(--width, 0%);
	height: 1.25rem;
	background-color: var(--green-color);
	transition: width 5s ease;
}

@media (max-width: 1024px) {
	.c-followers__counter::before {
		margin-bottom: 0;
		height: 0.3125rem;
	}
}

/* topページタイトル */
.c-contents__header {
	width: 100%;
}

.c-title__section {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1.25rem;
	margin: 0 0 1.875rem;
	width: 100%;
	font-size: 5rem;
	font-weight: 500;
	line-height: 1.215;
	background: var(--green-gradation);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media (max-width : 768px) {
	.c-title__section {
		flex-direction: column;
		gap: 0.625rem;
		font-size: 3.5rem;
    text-align: center;
	}
}

.c-title__section::after {
	content: "";
	display: block;
	width: 15.1875rem;
	height: 1rem;
	background-image: url(../images/img-line.png);
	background-size: contain;
}

.c-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#event .c-category__wrap {
	top: 0.875rem;
}

.c-category__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 0.9375rem;
}

@media (min-width : 769px) {
	.c-category__wrap  {
		/* position: absolute; */
		/* top: 1.25rem; */
	}

	/* #travel .p-common-article-item:first-child .c-category__wrap {
    position: static;
  } */
}

.c-category {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--gray-color);
	padding: 0 0.625rem;
	border-radius: 1.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color : var(--base-color);
}

.c-category.u-large {
	padding: 0 1.25rem;
	font-size: 1rem;
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	font-size: 1rem;
	line-height: 1.1875;
	color : var(--gray-color);
}

.c-category.u-large:hover {
	color: var(--green-color);
}

.c-date__event {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
}

.c-avatar-wrap {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 50%;
	background-color: var(--gray2-color);
}

@media (max-width : 768px) {
	.c-avatar-wrap {
		display: none;
	}
}

.c-avatar-wrap-02 {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 50%;
	background-image: var(--green-gradation);
}

@media (max-width : 768px) {
	.c-avatar-wrap-02 {
		display: none;
	}
}

.c-avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-date__article {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #202222;
}

.c-name__author {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #202222;
	font-weight: 600;
}

/* ボタン */
.c-button__readmore {
	position: relative;
	display: flex;
	margin: 3.125rem auto 0;
	justify-content: center;
	align-items: center;
	padding: 1.4375rem 3.4722222222vw;
	border: 1px solid var(--green-color);
	background: var(--base-color);
	width: min(100%, 31.25rem);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.2;
	color: var(--green-color);
	font-family: "Alexandria", sans-serif;
	text-transform: uppercase;
	transition: 0.2s all;
}

.c-button__readmore:hover {
	transition: 0.2s all;
	color: var(--base-color);
}

.c-button__readmore::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
	background: var(--green-gradation);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.c-button__readmore:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.c-button__readmore span {
	position: relative;
}

/* ハンバーガーメニュー */
.c-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.c-hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* モバイル対応 */
@media (max-width: 840px) {
  .c-hamburger {
    display: flex;
    margin-left: auto; /* 右寄せしたい場合 */
  }
}

.c-hamburger.is-active span:nth-child(1) {
	transition: 0.2s all;
  transform: translateY(7.5px) rotate(45deg);
}

.c-hamburger.is-active span:nth-child(2) {
	transition: 0.2s all;
  opacity: 0;
}

.c-hamburger.is-active span:nth-child(3) {
	transition: 0.2s all;
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ページネーション */
.c-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 6.25rem;
	width: 100%;
}

.c-pagination__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5625rem;
	width: auto;
}

.c-pagination li {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--green-color);
}

.c-pagination__next, 
.c-pagination__prev {
	width: 1.5rem;
	height: 1.5rem;
}

.c-pagination__count {
	width: 2.5rem;
	height: 2.5rem;
}

.c-pagination__count {
	border: 1px solid var(--green-color);
	background-color: var(--base-color);
}

.c-pagination__count:has(.current) {
	color: var(--base-color);
	background-color: var(--green-color);
}

.c-pagination__next a, 
.c-pagination__prev a,
.c-pagination__count a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.c-pagination__prev a::before,
.c-pagination__next a::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	display: block;
	height: 0.75rem;
	width: 0.75rem;
}

.c-pagination__prev a::before {
	border-left: 2px solid var(--green-color);
	border-bottom: 2px solid var(--green-color);
}

.c-pagination__next a::before {
	border-top: 2px solid var(--green-color);
	border-right: 2px solid var(--green-color);
}

/* パンクズリスト */
.c-breadcrumb {
	overflow: auto;
	white-space: nowrap;
  -webkit-overflow-scrolling: touch;
	width: calc(100% + 1.25rem);
	-ms-overflow-style: none;
  scrollbar-width: none;
}

/*スクロールバー非表示（Chrome・Safari）*/
.c-breadcrumb::-webkit-scrollbar{
  display:none;
}

.c-breadcrumb-list {
	display: flex;
	justify-content:  flex-start;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.25rem 0.625rem 0; 
	width: max-content;
}

.c-breadcrumb-item {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.625rem;
	width: auto;
	overflow: hidden;
	white-space: nowrap;
}

.c-breadcrumb-item a {
	overflow: hidden;
	white-space: nowrap;
}

.c-breadcrumb-item a:hover {
	opacity: 0.7;
	transition: .2s all;
}

@media (max-width : 768px) {
	.c-breadcrumb-item:last-child  {
		flex-shrink: 10;
	}
}
.c-breadcrumb-item:not(:first-child)::before {
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0.875rem;
	height: 1.375rem;
	background-image: url(../images/icon-breadcrumb-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.c-breadcrumb-top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
}

.c-breadcrumb-top::before {
	content: "";
	display: block;
	width: 1.375rem;
	height: 1.375rem;
	background-image: url(../images/icon-home.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* ブロックエディタ カスタム */
.c-title__article-h2 {
	position: relative;
	margin: 0.625rem 0;
	padding: 0 0 0 1.375rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
}

.c-title__article-h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background-color: var(--green-color);
	width: 0.6875rem;
	height: 100%;
}

.c-title__article-h3 {
	position: relative;
	padding: 0.3125rem 0.625rem 0.8125rem;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
}

.c-title__article-h3::before {
	content: "";
	position: absolute;
	bottom: 0.3125rem;
	left: 0;
	display: block;
	height: 0.1875rem;
	width: 100%;
	background-image: var(--green-gradation);
}

.c-title__article-h4 {
	margin: 0.3125rem 0;
	background-image: var(--green-gradation);
	padding: 0.5rem 0.875rem;
	color: var(--base-color);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
}

.c-title__article-h5 {
	padding: 0.375rem 0 0.3125rem;
	color: var(--green-color);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
}

.c-title__article-h6 {
	margin: 0 0 0.3125rem;
	padding: 0.625rem 0;
	color: var(--light-green-color);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

.c-text__article-p {
	margin: 0.625rem 0 1.875rem;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 500;
}

.wp-block-image {
	margin: 0.625rem auto 1.25rem;
	width: calc(100% - 2.777778rem* 2);
}

.c-list__article-ol {
	margin: 1.25rem auto;
	background-color: var(--green-back2-color);
	padding: 1.875rem;
	counter-reset: list-counter;
}

.c-list__article-ol li {
	position: relative;
	padding: 0.1875rem 0 0.1875rem 2.5rem;
	counter-increment: list-counter;
	line-height: 1.5;
	font-weight: 500;
}

.c-list__article-ol li::before {
	content: counter(list-counter);
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.875rem;
	height: 1.875rem;
	background-image: var(--green-gradation);
	font-family: "Alexandria", sans-serif;
	font-weight: 300;
	color: var(--base-color);
}

.c-list__article-ol li:not(:first-child) {
	margin-top: 1.25rem;
}

.c-list__article-ul {
	margin: 1.25rem auto;
	border-top: 3px solid var(--green-color);
	padding: 1.875rem;
}

.c-list__article-ul li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.875rem;
	padding: 0.3125rem 0;
	border-bottom: 1px dashed var(--gray2-color);
	line-height: 1.5;
	font-size: 1rem;
	font-weight: 500;
}

.c-list__article-ul li::before {
	content: "";
	position: relative;
	display: flex;
	width: 1.25rem;
	height: 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background-image: url(../images/icon-article-list.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.c-list__article-ul li:not(:first-child) {
	margin-top: 1.25rem;
}

.c-link__text {
	color: #0084DB;
	text-decoration: none;
	transition: 0.2s text-decoration;
}

.c-link__text:hover {
	text-decoration: underline;
	transition: 0.2s text-decoration;
}

.section-swiper {
  position: relative;
}

.section-swiper .swiper, .section-swiper .swiper-movie {
  padding-top: 60px;
}

.swiper-button-wrap {
  position: absolute;
  top: 24px;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;

}

.swiper-button-wrap .swiper-button-prev,
.swiper-button-wrap .swiper-button-next {
  position: initial;
  height: 48px;
  width: 48px;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  cursor: pointer;
}

.swiper-button-wrap .swiper-button-prev::after,
.swiper-button-wrap .swiper-button-next::after {
  content: none;
}

.swiper-button-prev {
  background-image: url(../images/icon-park-outline_left-c.svg);
}

.swiper-button-next {
  background-image: url(../images/icon-park-outline_right-c.svg);
}

.p-movie__btn {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  background:#6EB847;
  border: 1px solid #24A076;
  transition: 0.2s ease;
  width: max-content;
}

.p-movie__btn:hover {
  background: #24A076;
}

/* .l-movie {
	background-image: url(../images/bg-02.png);
	background-size: cover;
	background-position: center;
} */

.l-movie__inner {
  padding: 3.125rem 0 3.125rem;
}

@media (min-width : 768px) {
  .l-movie__inner {
    padding: 6.25rem 0 6.25rem;
  }
}

/* フェードインアニメーション */
.js-fadein {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fadein.is-inview {
  opacity: 1;
  transform: translateY(0);
}
