@charset "utf-8";

/* page.css */

/* ページタイトル */
.title-area {
	padding-top: 4.4rem;
	padding-bottom: 7.4rem;
}

.title-area.width-base > * {
	width: min(calc(100% - 60px),1080px);
}

.title-area .wp-block-columns {
	flex-flow: row nowrap !important;
	align-items: center !important;
	justify-content: center;
	gap: 1.5rem 8.0rem;
}

.title-area .wp-block-columns .wp-block-column {
	flex-basis: auto !important;
	flex-grow: 0 !important;
}

.title-area .wp-block-columns .wp-block-column:nth-of-type(1) {
	flex-shrink: 0;
}

.title-area h2 + p {
	width: min(100%,240px);
	margin: 1.1rem auto 0;
	padding: 1.0rem;
	border-radius: 99em;
	background-color: var(--cp-color-g);
	text-align: center;
	color: #FFFFFF;
}

/* ２カラム */
.sidemenu-area {
	width: 100%;
	margin: 0 auto;
	gap: 0 !important;
}

.sidemenu-area > .wp-block-column {
	flex-basis: auto !important;
	flex-grow: 0 !important;
}

.sidemenu-area > .wp-block-column:nth-of-type(1) {
	width: max(30%,350px);
	padding: 7.6rem 7.4rem 7.6rem 3.0rem;
	color: #FFFFFF;
}

.sidemenu-area > .wp-block-column:nth-of-type(2) {
	width: min(70%,calc(100% - 350px));
	padding: 7.6rem 3.0rem 7.6rem 10.0rem;
	background-color: #FFFFFF;
}

.menu-area {
	position: sticky;
	top: 130px;
}

.menu-area ul {
	width: fit-content;
	margin-left: auto;
}

.menu-area ul > li {
	display: flex;
	flex-flow: row nowrap;
}

.menu-area ul > li::before {
	content: "";
	width: 12px;
	height: 18px;
	margin: 0.6rem 0.9rem 0 0;
	background: url("../images/icon_grain_w.svg") 50% 50% no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.menu-area ul > li + li {
	margin-top: 0.3rem;
}

.menu-area ul > li.mt {
	margin-top: 2.4rem;
}

.menu-area ul > li a:hover,
.menu-area ul > li.cur a {
	opacity: 1;
}

.btn-movie {
	text-align: center;
}

.btn-movie a {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0.6rem 2.2rem 0.7rem;
	border-radius: 99em;
	background-color: var(--cp-color-r);
	line-height: 1;
	font-weight: 700;
	font-size: var(--ft-size-s);
	color: #FFFFFF;	
}

.btn-movie a::before {
	content: "";
	width: 19px;
	height: 19px;
	margin: 0 1.0rem 0 0;
	background: url("../images/icon_mv_play.svg") 50% 50% no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.bg-leaf {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	width: min(100%,360px);
	margin: 0 auto 2.2rem;
}

.bg-leaf::before,
.bg-leaf::after {
	content: "";
	width: 16px;
	height: 62px;
	flex-shrink: 0;
}

.bg-leaf::before {
	background: url("../images/title_bg_leaf_l.svg") 50% 50% no-repeat;
	background-size: contain;
}

.bg-leaf::after {
	background: url("../images/title_bg_leaf_r.svg") 50% 50% no-repeat;
	background-size: contain;
}

a.blank {
	display: inline-flex;
	align-items: center;
}

a.blank::after {
	content: "";
	width: 16px;
	height: 16px;
	margin-left: 0.5rem;
	background: url("../images/icon_blank.svg") 50% 50% no-repeat;
	background-size: contain;	
}

.wp-block-buttons:has(> .wp-block-button.btn-dl-pdf) {
	flex-wrap: wrap !important;
	gap: 3.0rem;
}

.wp-block-button.btn-dl-pdf {
	width: min(100%,240px);
}

.wp-block-button.btn-dl-pdf a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1.2rem 2.0rem;
	border: 1px solid var(--cp-color-r);
	border-radius: 99em;
	background-color: #FFFFFF;
	line-height: 2.0;
	font-size: var(--ft-size-s);
	color: var(--cp-color-r);
	gap: 0.7rem;
}

.wp-block-button.btn-dl-pdf a::before {
	content: "";
	width: 19px;
	height: 24px;
	background: url("../images/icon_file_pdf.svg") 50% 50% no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.wp-block-button.btn-dl-pdf a::after {
	content: "";
	width: 12px;
	height: 12px;
	margin-left: auto;
	background: url("../images/icon_download.svg") 50% 50% no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

/* ================================================ */
@media (max-width: 1000px) {

.title-area .wp-block-columns {
	align-items: center !important;
	justify-content: center;
	gap: 1.5rem 8%;
}

.sidemenu-area > .wp-block-column:nth-of-type(1) {
	width: max(30%,280px);
	padding: 7.6rem 3.0rem;
}

.sidemenu-area > .wp-block-column:nth-of-type(2) {
	width: min(70%,calc(100% - 280px));
	padding: 7.6rem 3.0rem 7.6rem 5.0rem;
}

}

/* ================================================ */
@media (max-width: 840px) {

/* ２カラム */
.sidemenu-area > .wp-block-column:nth-of-type(1) {
	display: none;
}

.sidemenu-area > .wp-block-column:nth-of-type(2) {
	width: 100%;
	padding: 7.6rem 3.0rem;
}

}

/* ================================================ */
@media (max-width: 480px) {

.title-area {
	padding-top: 4.0rem;
	padding-bottom: 4.4rem;
}

.title-area .wp-block-columns {
	flex-flow: column nowrap !important;
}

.title-area .wp-block-columns .wp-block-column:nth-of-type(1) {
	flex-shrink: 1;
}

.sidemenu-area > .wp-block-column:nth-of-type(2) {
	padding: 5.0rem 2.0rem 0;
}

}