@charset "UTF-8";
/* color */
/*  */
@import url("https://fonts.googleapis.com/css?family=Dosis|Noto+Sans+JP");
@media only screen and (min-width: 768px) {
	.SP {
		display: none !important;
	}
}

@media only screen and (max-width: 767px) {
	.PC {
		display: none !important;
	}
}

/* font */
html {
	font-size: 62.5%;
}

html.is-sp-menu-open {
	overflow: hidden;
}

body {
	font-family: 'Noto Sans Japanese', sans-serif;
	background: #fff;
	color: #333;
	line-height: 1.5;
}

@media only screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}

@media only screen and (min-width: 768px) {
	body {
		font-size: 1.4rem;
		overflow: auto;
	}
}

body.is-loaded {
	background: #fff4f8;
	transition: background 1s ease;
}

body.is-sp-menu-open {
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
	body.is-sp-menu-open .fb-header .sp-menu-icon {
		background-image: url(https://assets.sakuramori.org/vault/img/menu-close.svg);
		background-size: 5.6vw;
		background-position: center;
	}
}

@media only screen and (max-width: 767px) {
	body.is-sp-menu-open .fb-header .fb-nav {
		transform: translateX(0%);
	}
}

img {
	vertical-align: bottom;
}

a {
	color: inherit;
}

a:hover {
	text-decoration: none;
}

@media only screen and (max-width: 767px) {
	p {
		line-height: 1.75;
	}
}

@media only screen and (min-width: 768px) {
	p {
		line-height: 1.625;
	}
}

p + p {
	margin-top: .85em;
}

.fb-loading {
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.fb-loading-img {
	width: 100px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	animation: loadingAni 5s linear 0s infinite;
}

@media only screen and (max-width: 767px) {
	.fb-loading-img {
		width: 50px;
	}
}

.is-load .fb-loading-img {
	opacity: 0;
	transition: opacity .5s ease-in;
}

.is-load .fb-loading {
	opacity: 0;
	transition: opacity 1s ease-in;
}

.is-loaded .fb-loading {
	display: none;
}

@keyframes loadingAni {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media only screen and (max-width: 767px) {
	.fb-header {
		position: absolute;
		z-index: 9;
		left: 0;
		top: 0;
		width: 100%;
	}
}

.fb-header-logo {
	line-height: 1;
}

@media only screen and (max-width: 767px) {
	.fb-header-logo {
		width: 18.66667vw;
		margin-left: 5.33333vw;
		margin-top: 6vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-header-logo {
		width: 98px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-header .sp-menu-icon {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.fb-header .sp-menu-icon {
		display: block;
		width: 7.73333vw;
		height: 5.86667vw;
		background-image: url(https://assets.sakuramori.org/vault/img/menu-open.svg);
		background-size: contain;
		background-repeat: no-repeat;
		position: absolute;
		top: 5.33333vw;
		right: 5.33333vw;
		z-index: 9999;
	}
}

@media only screen and (min-width: 768px) {
	.fb-header .fb-nav {
		margin-left: 85px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-header .fb-nav {
		position: absolute;
		top: 0;
		right: 0;
		width: 72vw;
		min-height: 100vh;
		padding: 16vw 9.33333vw;
		border: 0.53333vw solid #fff;
		background-color: #f8bfd8;
		z-index: 999;
		transform: translateX(100%);
		transition: all .2s linear;
	}
}

.fb-header .fb-nav .fb-inner {
	display: flex;
	line-height: 0;
	justify-content: flex-start;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.fb-header .fb-nav .fb-inner {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.fb-header .fb-nav__ttl {
		width: 29.86667vw;
	}
}

.fb-header .fb-nav__ttl img {
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.fb-header .fb-nav ul {
		margin-top: 10.66667vw;
	}
}

.fb-header .fb-nav ul li {
	display: inline-block;
}

@media only screen and (min-width: 768px) {
	.fb-header .fb-nav ul li:not(:last-child) {
		margin-right: 40px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-header .fb-nav ul li:not(:last-child) {
		margin-bottom: 6.66667vw;
	}
}

.fb-header .fb-nav ul li a {
	display: block;
	line-height: 1;
	white-space: nowrap;
	letter-spacing: 0.1rem;
}

@media only screen and (min-width: 768px) {
	.fb-header .fb-nav ul li a {
		padding-right: 20px;
		font-size: 14px;
		position: relative;
		text-decoration: none;
	}
	.fb-header .fb-nav ul li a::after {
		position: absolute;
		width: 10px;
		height: 6px;
		right: 0;
		top: 50%;
		transform: translate(0, -50%);
		content: '';
		background: url("../img/icon-arrow-down.png") center center no-repeat;
		background-size: contain;
	}
}

@media only screen and (max-width: 767px) {
	.fb-header .fb-nav ul li a {
		padding-right: 4vw;
		position: relative;
		text-decoration: none;
		font-size: 26px;
		font-size: 3.46667vw;
	}
	.fb-header .fb-nav ul li a::after {
		position: absolute;
		width: 2.4vw;
		padding-top: 1.6vw;
		right: 0;
		top: 50%;
		transform: translate(0, -50%);
		content: '';
		background: url("../img/icon-arrow-down.png") center center no-repeat;
		background-size: contain;
	}
}

.fb-header .fb-nav ul li.fb-nav-mm a {
	color: #50a914;
}

@media only screen and (min-width: 768px) {
	.fb-header .fb-nav ul li.fb-nav-mm a {
		padding-right: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-header .fb-nav ul li.fb-nav-mm a {
		padding-right: 4vw;
	}
}

.fb-header .fb-nav img {
	vertical-align: middle;
	width: 120px;
}

@media only screen and (max-width: 767px) {
	.fb-header .fb-nav img {
		display: block;
		width: 29.86667vw;
	}
}

/**/
@media only screen and (min-width: 768px) {
	.fb-wrapper {
		min-width: 1200px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-wideinnr {
		max-width: 1320px;
		margin: 40px auto auto;
		display: flex;
		align-items: center;
	}
}

@media only screen and (min-width: 768px) {
	.fb-innr {
		max-width: 1080px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width: 767px) {
	.fb-innr {
		width: 90vw;
		margin: 0 auto 0;
	}
}

@media only screen and (max-width: 767px) {
	.fb-innr--overseas {
		width: 100%;
		margin: 0 auto 0;
	}
}

/* mv */
.fb-mv {
	overflow: hidden;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.fb-mv {
		background: url(https://assets.sakuramori.org/vault/img/main-thumb-01.jpg) no-repeat;
		background-size: cover;
		background-position: left top;
		height: 157.3333vw;
		opacity: .5;
	}
	.is-loaded .fb-mv {
		opacity: 1;
		transition: .7s linear;
	}
}

@media only screen and (min-width: 768px) {
	.fb-mv {
		background: #ffdae8;
		width: 0;
	}
	.fb-mv:before {
		content: '';
		width: 549px;
		height: 472px;
		display: block;
		position: absolute;
		left: 50%;
		bottom: -102px;
		background: url(https://assets.sakuramori.org/vault/img/main-bloom-01.png) no-repeat;
		margin-left: -934px;
		opacity: 0;
	}
	.is-loaded .fb-mv:before {
		opacity: 1;
		transition: 1s ease 1s;
	}
	.fb-mv:after {
		content: '';
		width: 543px;
		height: 474px;
		display: block;
		position: absolute;
		left: 50%;
		top: -220px;
		background: url(https://assets.sakuramori.org/vault/img/main-bloom-02.png) no-repeat;
		margin-left: -245px;
		opacity: 0;
	}
	.is-loaded .fb-mv:after {
		opacity: 1;
		transition: 1s ease 1s;
	}
	.is-loaded .fb-mv {
		width: 100%;
		transition: .6s ease-out;
	}
}

.fb-mv-bg {
	position: relative;
}

@media only screen and (min-width: 768px) {
	.fb-mv-bg:before {
		content: '';
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		left: 50%;
		top: 0;
		background: url(https://assets.sakuramori.org/vault/img/main-thumb-01.jpg) no-repeat;
		margin-left: -40px;
		opacity: 0;
	}
	.is-loaded .fb-mv-bg:before {
		opacity: 1;
		transition: 1s ease 1s;
	}
}

@media only screen and (max-width: 767px) {
	.fb-mv-innr {
		padding: 45px 20px 0;
	}
}

@media only screen and (min-width: 768px) {
	.fb-mv-innr {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		display: flex;
	}
}

.fb-mv-l {
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.fb-mv-l {
		background: #fcccde;
		padding: 20px 0;
		overflow: hidden;
		position: relative;
		opacity: 0;
	}
	.fb-mv-l:before, .fb-mv-l:after {
		content: '';
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		z-index: 1;
		top: 0;
	}
	.fb-mv-l:before {
		left: 0;
		background: url(https://assets.sakuramori.org/vault/img/bg-bloom-sp01.png) no-repeat;
		background-size: 27.32394% auto;
		background-position: right top;
	}
	.fb-mv-l:after {
		left: 0;
		background: url(https://assets.sakuramori.org/vault/img/bg-bloom-sp02.png) no-repeat;
		background-size: 28.73239% auto;
		background-position: left bottom;
	}
	.is-loaded .fb-mv-l {
		opacity: 1;
		transition: 1.2s ease 1.2s;
	}
}

@media only screen and (min-width: 768px) {
	.fb-mv-l {
		display: flex;
		justify-content: flex-start;
		width: 560px;
		height: 700px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-mv-l-block {
		position: relative;
		z-index: 2;
	}
}

@media only screen and (min-width: 768px) {
	.fb-mv-l-block {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding: 100px 0 70px;
	}
}

.fb-mv-r {
	text-align: center;
}

@media only screen and (min-width: 768px) {
	.fb-mv-r {
		flex: 1;
	}
}

@media only screen and (max-width: 767px) {
	.fb-mv-title {
		width: 74.08451%;
		margin: 20px auto;
		opacity: 0;
	}
	.fb-mv-title img {
		width: 100%;
		height: auto;
	}
	.is-loaded .fb-mv-title {
		opacity: 1;
		transition: 1s linear 2.2s;
	}
}

@media only screen and (min-width: 768px) {
	.fb-mv-title {
		margin-top: 40px;
		opacity: 0;
	}
	.is-loaded .fb-mv-title {
		opacity: 1;
		transition: 1s linear 1.4s;
	}
}

@media only screen and (max-width: 767px) {
	.fb-mv-mark {
		width: 16.90141%;
		margin: 0 auto;
		opacity: 0;
	}
	.is-loaded .fb-mv-mark {
		opacity: 1;
		transition: 1s linear 2s;
	}
}

@media only screen and (min-width: 768px) {
	.fb-mv-mark {
		width: 113px;
		opacity: 0;
	}
	.is-loaded .fb-mv-mark {
		opacity: 1;
		transition: 1s linear 1.2s;
	}
}

@media only screen and (max-width: 767px) {
	.fb-mv-term {
		opacity: 0;
	}
	.is-loaded .fb-mv-term {
		opacity: 1;
		transition: 1s linear 2.4s;
	}
}

@media only screen and (min-width: 768px) {
	.fb-mv-term {
		margin-top: auto;
		opacity: 0;
	}
	.is-loaded .fb-mv-term {
		opacity: 1;
		transition: 1s linear 1.6s;
	}
}

@media only screen and (max-width: 767px) {
	.fb-mv-term-upper {
		width: 42.8169%;
		margin: 0 auto;
	}
	.fb-mv-term-upper img {
		width: 100%;
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.fb-mv-term-lower {
		width: 78.59155%;
		margin: 10px auto 0;
	}
	.fb-mv-term-lower img {
		width: 100%;
		height: auto;
	}
}

@media only screen and (min-width: 768px) {
	.fb-mv-term-lower {
		margin-top: 13px;
	}
}

/* news */
.fb-news {
	position: relative;
	background: #fff;
	z-index: 5;
}

@media only screen and (max-width: 767px) {
	.fb-news {
		border-radius: 4vw;
		width: 89.33333vw;
		margin: auto;
		padding: 5.33333vw 4vw 2.66667vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-news {
		padding: 25px 0 10px;
		border-radius: 20px;
		width: 920px;
		margin: -120px auto 0;
	}
}

.fb-news__title img {
	display: block;
	margin: auto;
}

@media only screen and (max-width: 767px) {
	.fb-news__title img {
		width: 14.13333vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-news__title img {
		width: 60px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-news .fb-newsList {
		margin-top: 4vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-news .fb-newsList {
		margin-top: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.fb-news .fb-newsList-item {
	display: flex;
}

@media only screen and (max-width: 767px) {
	.fb-news .fb-newsList-item {
		border-top: 0.26667vw solid #ffe8f0;
		padding: 2.66667vw 0;
	}
}

@media only screen and (min-width: 768px) {
	.fb-news .fb-newsList-item {
		border-top: 1px solid #ffe8f0;
		padding: 16px 10px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-news .fb-newsList-date, .fb-news .fb-newsList-text {
		font-size: 3.33333vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-news .fb-newsList-date, .fb-news .fb-newsList-text {
		font-size: 14px;
	}
}

.fb-news .fb-newsList-date {
	color: #909090;
}

@media only screen and (max-width: 767px) {
	.fb-news .fb-newsList-date {
		width: 20.8vw;
		flex-shrink: 0;
	}
}

@media only screen and (min-width: 768px) {
	.fb-news .fb-newsList-date {
		width: 70px;
		margin-right: 2em;
	}
}

/* section */
.fb-section {
	/* section0 Add 20200203 */
	/* section movie Add 20200203 */
	/* section topics Add 20220124 */
	/* section03 Add 20200203 */
	/* section04 Add 20200203 */
}

@media only screen and (max-width: 767px) {
	.fb-section {
		padding: 16.66667vw 0 18.66667vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section {
		padding: 120px 0 130px;
	}
}

.fb-section#fb-section-zaidan {
	background: #ffe9f1;
}

@media only screen and (max-width: 767px) {
	.fb-section-title + .fb-section-title {
		margin-top: 60px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-title + .fb-section-title {
		margin-top: 120px;
	}
}

.fb-section-title {
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.fb-section-title {
		margin-bottom: 9.33333vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-title {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-title-thumb img {
		width: 19px;
		margin: 0 5px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-title-thumb img {
		margin: 0 10px;
	}
}

.fb-section-title-thumb img:nth-child(2) {
	transform: rotate(-5deg);
}

.fb-section-title-thumb img:nth-child(3) {
	transform: rotate(6deg);
}

@media only screen and (max-width: 767px) {
	.fb-section-title-text {
		width: 68.30986%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 16px;
	}
	.fb-section-02 .fb-section-title-text {
		width: 32.39437%;
	}
	.fb-section-03 .fb-section-title-text {
		width: 59.29577%;
	}
	.fb-section-title-text img {
		width: 100%;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-title-text {
		margin-top: 32px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-title-text2 {
		width: 88.16901%;
		margin: 0 auto;
		margin-top: 35px;
	}
	.fb-section-title-text2 img {
		width: 100%;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-title-text2 {
		margin-top: 80px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-2clm {
		display: flex;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-2clm-l p {
		font-size: 1.3rem;
		line-height: 24px;
		font-weight: 200;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-2clm-l {
		flex: 1;
	}
	.fb-section-2clm-l p {
		font-size: 1.6rem;
		line-height: 34px;
		font-weight: 200;
		max-width: 24em;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-2clm-r {
		margin-top: 20px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-2clm-r {
		flex: 1;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-00 {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-00 {
		padding-top: 6.66667vw;
	}
}

.fb-section-00 .fb-inner {
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.fb-section-00 .fb-inner img {
		width: 82.4vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-movie .fb-section-title-text {
		width: 23.33333vw;
		margin-top: 5.33333vw;
	}
}

.fb-section-movie .movie-thumb {
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.fb-section-movie .movie-thumb {
		width: 100%;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-movie .movie-thumb {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-topics .fb-section-title-text {
		width: 24.26667vw;
		margin-top: 5.33333vw;
	}
}

.fb-section-topics .fb-section__topicsarea {
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.fb-section-topics .fb-section__topicsarea h3 {
		width: 36.66667vw;
		margin: 0 auto;
	}
	.fb-section-topics .fb-section__topicsarea h3 img {
		width: 100%;
	}
}

.fb-section-topics .fb-section__topicsarea .topics-text-img {
	margin: 24px 0 80px 0;
}

@media only screen and (max-width: 767px) {
	.fb-section-topics .fb-section__topicsarea .topics-text-img {
		width: 86.66667vw;
		margin: 4.26667vw auto 9.33333vw;
	}
	.fb-section-topics .fb-section__topicsarea .topics-text-img img {
		width: 100%;
	}
}

.fb-section-topics .fb-section__topicsarea .fb-section-topics-carouselarea {
	padding: 80px 0 0 0;
}

@media only screen and (max-width: 767px) {
	.fb-section-topics .fb-section__topicsarea .fb-section-topics-carouselarea {
		padding: 10.66666667vw 0 0 0;
	}
}

.fb-section-topics .fb-section__topicsarea .profile {
	margin-top: 75px;
	box-sizing: border-box;
	background-color: #fff;
	padding: 60px;
}

@media only screen and (max-width: 767px) {
	.fb-section-topics .fb-section__topicsarea .profile {
		margin-top: 12vw;
		padding: 10.66667vw 9.33333vw;
	}
	.fb-section-topics .fb-section__topicsarea .profile h3 {
		width: 38.8vw;
		margin: 0 auto;
	}
	.fb-section-topics .fb-section__topicsarea .profile h3 img {
		width: 100%;
	}
}

.fb-section-topics .fb-section__topicsarea .profile .profile-inner {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}

.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl {
	width: 280px;
}

.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dd.name {
	margin: 40px 0 30px;
}

.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dd.text {
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0.05em;
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner {
		margin-top: 12vw;
		display: block;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl {
		width: 100%;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dt {
		width: 33.33333vw;
		margin: 0 auto;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dt img {
		width: 100%;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dd.name {
		margin: 5.33333vw auto 4vw;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dd.name img {
		width: 100%;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dd.name.name01 {
		width: 24vw;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dd.name.name02 {
		width: 22.93333vw;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dd.name.name03 {
		width: 19.33333vw;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl dd.text {
		font-size: 3.46667vw;
		line-height: 6vw;
		letter-spacing: 0.05em;
		text-align: left;
	}
	.fb-section-topics .fb-section__topicsarea .profile .profile-inner dl + dl {
		margin-top: 12vw;
	}
}

.fb-section__moviearea {
	text-align: center;
}

@media only screen and (min-width: 768px) {
	.fb-section__moviearea {
		display: flex;
		flex-wrap: wrap;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section__moviearea .movie-thumb:nth-child(even) {
		margin-left: 30px;
	}
}

.fb-section-01 {
	overflow: hidden;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.fb-section-01:before, .fb-section-01:after {
		content: '';
		width: 79.6vw;
		height: 79.86667vw;
		display: block;
		position: absolute;
		z-index: 1;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url(https://assets.sakuramori.org/vault/img/bg-bloom-sp03.png);
	}
	.fb-section-01:before {
		right: -46.13333vw;
		top: 30.66667vw;
	}
	.fb-section-01:after {
		left: -37.33333vw;
		bottom: -23.33333vw;
	}
	.fb-section-01 .fb-innr {
		position: relative;
		z-index: 2;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-01:before, .fb-section-01:after {
		display: block;
		position: absolute;
		content: '';
	}
	.fb-section-01:before {
		width: 549px;
		height: 472px;
		left: 50%;
		top: -30px;
		background: url(https://assets.sakuramori.org/vault/img/main-bloom-01.png) no-repeat;
		margin-left: 274px;
		transform: rotate(220deg);
	}
	.fb-section-01:after {
		width: 543px;
		height: 474px;
		left: 50%;
		bottom: -260px;
		background: url(https://assets.sakuramori.org/vault/img/main-bloom-02.png) no-repeat;
		margin-left: -770px;
		transform: rotate(-20deg);
	}
}

.fb-section-01 {
	background: #ffe9f1;
}

.fb-section-01__textarea {
	text-align: center;
	margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
	.fb-section-01__textarea {
		margin-bottom: 9.33333vw;
	}
	.fb-section-01__textarea img {
		width: 74.26667vw;
	}
}

.fb-section-01 .movie-thumb {
	margin: 96px auto 0;
}

.fb-section-01 .fb-section__moviearea {
	z-index: 1;
	position: relative;
}

.fb-section-03 .fb-plant__carouselarea {
	width: 700px;
	margin: 0 auto 150px;
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .fb-plant__carouselarea {
		width: 80vw;
		margin: 0 auto 18.66667vw;
	}
}

.fb-section-03 .js-plant-carouseldots {
	text-align: center;
	position: absolute;
	width: 100%;
	bottom: -40px;
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .js-plant-carouseldots {
		bottom: 0;
		margin-bottom: -6.66667vw;
	}
}

.fb-section-03 .js-plant-carouseldots li {
	display: inline-block;
	margin: 0 10px;
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .js-plant-carouseldots li {
		margin: 0 1.33333vw;
	}
}

.fb-section-03 .js-plant-carouseldots button {
	font-size: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #b8b8b8;
	outline: none;
	border: none;
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .js-plant-carouseldots button {
		width: 1.33333vw;
		height: 0;
		padding-top: 1.33333vw;
	}
}

.fb-section-03 .js-plant-carouseldots button:hover {
	background: #e95098;
}

.fb-section-03 .js-plant-carouseldots .slick-active button {
	background: #e95098;
}

.fb-section-03 .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 24px;
	height: 45px;
	background: url("../img/icon-arrow-right-pink.png") top left no-repeat;
	background-size: contain;
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .slick-arrow {
		width: 2.66667vw;
		padding-top: 6.66667vw;
		height: 0;
	}
}

.fb-section-03 .slick-arrow:hover, .fb-section-03 .slick-arrow:focus {
	background: url("../img/icon-arrow-right-pink.png") top left no-repeat;
	background-size: contain;
}

.fb-section-03 .slick-next {
	right: -40px;
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .slick-next {
		right: -6.93333vw;
	}
}

.fb-section-03 .slick-next:hover {
	opacity: 0.8;
	transform: translate(3px, -50%);
}

.fb-section-03 .slick-prev {
	left: -40px;
	transform: translate(0px, -50%) scale(-1, 1);
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .slick-prev {
		left: -6.93333vw;
	}
}

.fb-section-03 .slick-prev:hover {
	opacity: 0.8;
	transform: translate(-3px, -50%) scale(-1, 1);
}

.fb-section-03 .p-table {
	width: 100%;
}

.fb-section-03 .fb-plant__action h3 {
	text-align: center;
	margin-bottom: 35px;
	margin-top: 80px;
	text-align: center;
	border-bottom: #e95098 1px solid;
	position: relative;
	padding-bottom: 1.5em;
	margin-bottom: 0;
	cursor: pointer;
	transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .fb-plant__action h3 {
		padding-bottom: 3.2vw;
		margin-top: 10.66667vw;
		text-align: left;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-03 .fb-plant__action h3 img {
		width: 38vw;
		margin-left: 3.33333vw;
	}
}

.fb-section-03 .fb-plant__action h3::before, .fb-section-03 .fb-plant__action h3::after {
	content: '';
	position: absolute;
	background: #e95098;
	height: 2px;
	right: 0;
	top: 36%;
	transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	width: 22px;
}

@media screen and (max-width: 750px) {
	.fb-section-03 .fb-plant__action h3::before, .fb-section-03 .fb-plant__action h3::after {
		width: 3.33333vw;
	}
}

.fb-section-03 .fb-plant__action h3::before {
	transform: translate(0, -50%);
}

.fb-section-03 .fb-plant__action h3::after {
	transform: translate(0, -50%) rotate(90deg);
}

.fb-section-03 .fb-plant__action .js-accordion-target {
	overflow: hidden;
	transform: translate(0, 10%);
	height: 0;
	transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.fb-section-03 .fb-plant__action.js-accordion-open h3::after {
	transform: translate(0, -50%) rotate(0deg);
}

.fb-section-03 .fb-plant__action.js-accordion-open .js-accordion-target {
	height: auto;
	transform: translate(0, 0);
}

.fb-section-04 {
	background: url("../img/sec04-bg.png") top left repeat;
}

.fb-section-04 .fb-twcampaign {
	background: #FFF;
	border-radius: 16px;
	padding-top: 1px;
	margin-bottom: 80px;
	padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign {
		padding-bottom: 5.33333vw;
		margin-bottom: 10.66667vw;
	}
}

.fb-section-04 .fb-twcampaign h3 {
	text-align: center;
	position: relative;
	margin-top: -58px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign h3 {
		margin-top: -1.33333vw;
	}
}

.fb-section-04 .fb-twcampaign h3 .sec04-ttl {
	width: 826px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign h3 .sec04-ttl {
		left: 50%;
		position: relative;
		width: 113.33333vw;
		transform: translate(-50%, 0);
	}
}

.fb-section-04 .fb-twcampaign h3 .flowers {
	position: absolute;
	bottom: 50px;
	left: 50%;
	width: 128px;
	transform: translate(-50%, 0);
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign h3 .flowers {
		bottom: 0;
		width: 20vw;
		margin-bottom: 4vw;
	}
}

.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea {
	text-align: center;
}

.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period-title {
	background: #e95098;
	color: #FFF;
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.2rem;
	padding: 6px 55px;
	margin-bottom: 20px;
	border-radius: 40px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period-title {
		font-size: 28px;
		font-size: 3.73333vw;
		margin-bottom: 2.66667vw;
		padding: 1.06667vw 6.66667vw;
	}
}

.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period {
	font-size: 39px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period {
		font-size: 38px;
		font-size: 5.06667vw;
	}
}

.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period p {
	font-size: 39px;
	font-weight: bold;
	display: inline-block;
	margin: 0;
	letter-spacing: 0.06rem;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period p {
		font-size: 40px;
		font-size: 5.33333vw;
	}
}

.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period p::after {
	position: absolute;
	content: '';
	bottom: 1px;
	width: 100%;
	height: 5px;
	left: 0;
	background: url("../img/sec04-bg2.png") top left repeat-x;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period p::after {
		padding-top: 0.66667vw;
		height: 0;
	}
}

.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period span {
	font-size: 26px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign .fb-twcampaign__periodarea .period span {
		font-size: 27px;
		font-size: 3.6vw;
	}
}

.fb-section-04 .fb-twcampaign__mm {
	width: 746px;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm {
		width: 78.66667vw;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm1,
.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm2,
.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm3 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm1,
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm2,
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm3 {
		margin-bottom: 4.66667vw;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign-finished {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #fd0404;
	margin-bottom: 1.5em;
	margin-top: 5px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign-finished {
		font-size: 36px;
		font-size: 4.8vw;
		margin-top: 1.33333vw;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmlead {
	text-align: center;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmlead {
		width: 80vw;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmlead p {
	letter-spacing: 0.1rem;
	font-weight: bold;
	font-size: 24px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmlead p {
		letter-spacing: 0;
		font-size: 28px;
		font-size: 3.73333vw;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmlead span {
	color: #e95098;
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmlead .blue {
	color: #02b5e2;
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmtext {
	border: #e95098 2px solid;
	border-radius: 12px;
	background: #ffe8f3;
	width: 600px;
	text-align: center;
	padding: 22px 0;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmtext {
		width: 60vw;
		padding: 4vw 0;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmtext p {
	font-weight: bold;
	font-size: 20px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmtext p {
		font-size: 22px;
		font-size: 2.93333vw;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmtext span {
	color: #e95098;
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmtext::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -24px;
	margin-top: -2px;
	border: 12px solid transparent;
	border-right: 12px solid #ffe8f3;
	z-index: 2;
	transform: scale(1, 0.5);
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmtext::before {
		/*left: vw(-36);
						border: vw(24) solid transparent;
						border-right: vw(24) solid #FFF;
						margin-top: vw(-14);*/
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mmtext::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -4px;
	border: 14px solid transparent;
	border-right: 14px solid #e95098;
	z-index: 1;
	transform: scale(1, 0.5);
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm1 img {
	width: 107px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm1 img {
		width: 14.26667vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm1 p {
		white-space: nowrap;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm2 img {
	width: 84px;
	margin-left: 10px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm2 img {
		width: 11.2vw;
		margin-left: 1.33333vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm2 p {
		white-space: nowrap;
	}
}

.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm3 img {
	width: 84px;
	margin-left: 10px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__mm .fb-twcampaign__mm3 img {
		width: 11.2vw;
		margin-left: 1.33333vw;
	}
}

.fb-section-04 .fb-twcampaign__note {
	font-size: 13px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-twcampaign__note {
		font-size: 20px;
		font-size: 2.66667vw;
		margin-bottom: 0;
	}
	.fb-section-04 .fb-twcampaign__note p {
		margin-bottom: 0;
	}
}

.fb-section-04 .fb-illustarea {
	border: 4px solid #f78ab8;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
	width: 900px;
	margin: 0 auto;
	background: #FFF;
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-illustarea {
		width: auto;
	}
}

.fb-section-04 .fb-illustarea h4 {
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
	font-size: 32px;
	height: 100px;
	line-height: 1;
	color: #FFF;
	font-weight: bold;
	background: #f78ab8;
}

.fb-section-04 .fb-illustarea h4 p {
	margin: 0;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-illustarea h4 {
		font-size: 36px;
		font-size: 4.8vw;
		line-height: 1.5;
		height: 21.33333vw;
	}
}

.fb-section-04 .fb-illustarea .js-illust-carousel-1 {
	text-align: center;
	margin: 40px 0;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-illustarea .js-illust-carousel-1 {
		margin: 4vw 0;
	}
}

.fb-section-04 .fb-illustarea .js-illust-carousel-1 .slick-slide {
	margin: 0 80px;
	outline: none;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-illustarea .js-illust-carousel-1 .slick-slide {
		margin: 0 4vw;
	}
}

.fb-section-04 .fb-illustarea .js-illust-carousel-1 img {
	width: 100%;
}

.fb-section-04 .fb-illustarea .js-illust-carousel-1 p {
	font-size: 16px;
	margin-top: 40px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-illustarea .js-illust-carousel-1 p {
		font-size: 24px;
		font-size: 3.2vw;
		margin-top: 5.33333vw;
	}
}

.fb-section-04 .fb-thumbarea {
	width: 916px;
	margin: 30px auto 0;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-thumbarea {
		width: auto;
		margin: 6vw auto;
	}
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-slide {
	margin: 0 8px;
	outline: none;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-slide {
		margin: 0 0.93333vw;
	}
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: #ccc 2px solid;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: transparent 4px solid;
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-slide img {
	width: 100%;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-slide.slick-current::after {
	border: #f78ab8 4px solid;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-arrow {
	position: absolute;
	width: 60px;
	padding-top: 60px;
	top: 50%;
	z-index: 2;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-arrow {
		width: 10.66667vw;
		padding-top: 10.66667vw;
	}
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-arrow::before {
	content: '';
	position: absolute;
	background: #f78ab8;
	border-radius: 50%;
	transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-arrow::after {
	content: '';
	position: absolute;
	background: url("../img/icon-arrow-right-white.png") top left no-repeat;
	background-size: contain;
	width: 11px;
	padding-top: 16px;
	top: 50%;
	left: 50%;
	transform: translate(-15%, -50%);
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-arrow::after {
		width: 1.73333vw;
		padding-top: 2.93333vw;
	}
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-arrow:focus {
	opacity: 1;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-arrow:hover {
	opacity: 1;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-arrow:hover::before {
	transform: scale(1.1);
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-disabled {
	opacity: 1;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-disabled::before {
	background: #ccc;
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-prev {
	left: -22px;
	transform: translate(0, -50%);
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-prev::after {
	transform: translate(-65%, -50%) scale(-1, 1);
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-prev {
		left: -2.93333vw;
	}
}

.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-next {
	right: -22px;
	transform: translate(0%, -50%);
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-thumbarea .js-illust-carousel-2 .slick-next {
		right: -2.93333vw;
	}
}

.fb-section-04 .fb-buttonarea {
	width: 465px;
	margin: 85px auto 100px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-buttonarea {
		width: auto;
		margin: 13.33333vw auto;
	}
}

.fb-section-04 .fb-buttonarea a {
	display: block;
	border-radius: 60px;
	text-decoration: none;
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media only screen and (min-width: 768px) {
	.fb-section-04 .fb-buttonarea a:hover {
		opacity: 0.8;
	}
	.fb-section-04 .fb-buttonarea a:hover::after {
		transform: translate(4px, -50%);
	}
}

.fb-section-04 .fb-buttonarea a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 50px;
	width: 12px;
	padding-top: 20px;
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: url("../img/icon-arrow-right-white.png") top left no-repeat;
	background-size: contain;
	transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-buttonarea a::after {
		right: 10.66667vw;
		width: 2vw;
		padding-top: 4.26667vw;
	}
}

.fb-section-04 .fb-buttonarea a p {
	text-align: center;
	color: #FFF;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fb-section-04 .fb-buttonarea .p-button__twitter {
	background: #00aced;
	position: relative;
	padding: 28px 0;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-buttonarea .p-button__twitter {
		padding: 4vw 0;
	}
}

.fb-section-04 .fb-buttonarea .p-button__twitter img {
	position: absolute;
	width: 38px;
	top: 50%;
	left: 64px;
	transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-buttonarea .p-button__twitter img {
		left: 16vw;
		width: 8vw;
	}
}

.fb-section-04 .fb-buttonarea .p-button__twitter p {
	font-size: 27px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-buttonarea .p-button__twitter p {
		font-size: 40px;
		font-size: 5.33333vw;
	}
}

.fb-section-04 .fb-buttonarea .p-button__mm {
	background: #50a914;
	position: relative;
	padding: 22px 0;
	margin-top: 68px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-buttonarea .p-button__mm {
		margin-top: 10.13333vw;
		width: 73.33333vw;
		margin-left: auto;
		margin-right: auto;
		padding: 3.33333vw 0;
	}
	.fb-section-04 .fb-buttonarea .p-button__mm::after {
		right: 5.33333vw;
	}
}

.fb-section-04 .fb-buttonarea .p-button__mm p {
	font-size: 18px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-buttonarea .p-button__mm p {
		font-size: 28px;
		font-size: 3.73333vw;
	}
}

.fb-section-04 .fb-mm-note {
	border: 2px solid #e95098;
	background: #FFF;
}

.fb-section-04 .fb-mm-note a {
	text-align: center;
	display: block;
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 18px 0;
	background: #e95098;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-mm-note a {
		padding: 4vw 0;
		font-size: 28px;
		font-size: 3.73333vw;
	}
}

.fb-section-04 .fb-mm-note a::after, .fb-section-04 .fb-mm-note a::before {
	content: '';
	background: #FFF;
	width: 15px;
	height: 2px;
	position: absolute;
	right: 33px;
	top: 50%;
	transform-origin: 50%;
	transform: translate(0, -50%);
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-mm-note a::after, .fb-section-04 .fb-mm-note a::before {
		right: 3.2vw;
		width: 4.4vw;
	}
}

.fb-section-04 .fb-mm-note a::before {
	transform: translate(0, -50%) rotate(90deg);
}

.fb-section-04 .fb-mm-note .js-accordion-target {
	padding: 0 40px 0;
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	height: 0;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-mm-note .js-accordion-target {
		padding: 0 5.33333vw 0;
	}
}

.fb-section-04 .fb-mm-note .js-accordion-target p {
	font-size: 15px;
	margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-mm-note .js-accordion-target p {
		font-size: 26px;
		font-size: 3.46667vw;
		margin-bottom: 6.66667vw;
	}
}

.fb-section-04 .fb-mm-note.js-accordion-open .js-accordion-target {
	padding: 40px 40px 0;
	height: auto;
}

@media only screen and (max-width: 767px) {
	.fb-section-04 .fb-mm-note.js-accordion-open .js-accordion-target {
		padding: 5.33333vw 5.33333vw 0;
	}
}

.fb-section-04 .fb-mm-note.js-accordion-open a::before {
	opacity: 0;
}

.fb-section-overseas {
	background-color: #fff;
}

.fb-section-overseas .fb-section-title-text img {
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 768px) {
	.fb-section-overseas .fb-section-title-text img {
		width: 371px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-overseas .fb-section-title-text img {
		width: 53.86667vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-overseas .fb-section-title-text2 {
		width: 100%;
	}
}

.fb-section-overseas .fb-section-title-text2 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 768px) {
	.fb-section-overseas .fb-section-title-text2 img {
		width: 737px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-overseas .fb-section-title-text2 img {
		width: 75.33333vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-section-overseas__map {
		margin-top: 70px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-overseas__map {
		margin-top: 12vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-section-overseas__map img {
		width: 100%;
	}
}

.fb-greenBox {
	position: relative;
	z-index: 1;
	border: 3px solid #bfd178;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox {
		padding: 10.66667vw 0 8vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox {
		width: 922px;
		margin: 0 auto 0;
		padding: 80px 0 80px;
		display: flex;
		justify-content: center;
	}
}

.fb-greenBox .prod-title {
	width: 226px;
	display: block;
	margin: 0 auto 74px;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .prod-title {
		width: 37.86667vw;
		margin: 0 auto 10.66667vw;
	}
}

.fb-greenBox .prod-title.prod-title-2022 {
	margin: 0 auto 20px;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .prod-title.prod-title-2022 {
		width: 37.86667vw;
		margin: 0 auto 2.66667vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox .prod-title--2023 {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .prod-title--2023 {
		margin-bottom: 3.33333vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox .prod-title--2024 {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .prod-title--2024 {
		margin-bottom: 3.33333vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox .prod-title--2025 {
		width: 230px;
		margin-bottom: 26px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .prod-title--2025 {
		margin-bottom: 4.8vw;
	}
}

.fb-greenBox .sub-title {
	width: 428px;
	margin: 0 auto 74px;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .sub-title {
		width: 73.86667vw;
		margin: 0 auto 10.66667vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox .sub-title--2023 {
		width: 262px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .sub-title--2023 {
		width: 44.26667vw;
		margin-bottom: 6.66667vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox .sub-title--2024 {
		width: 262px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .sub-title--2024 {
		width: 42.93333vw;
		margin-bottom: 6.66667vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox .sub-title--2025 {
		width: 261px;
		margin-bottom: 56px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .sub-title--2025 {
		width: 49.06667vw;
		margin-bottom: 5.06667vw;
	}
}

.fb-greenBox .fb-carousel__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	padding: 0;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .fb-carousel__wrap--2023 img {
		width: 66.13333vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .fb-carousel__wrap--2024 img {
		width: 43.73333vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .fb-carousel__wrap--2025 img {
		width: 54.93333vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .fb-carousel__wrap > div + div {
		margin-left: 0.8vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox .fb-carousel__wrap > div + div {
		margin-left: 20px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox .fb-carousel__profile {
		margin-top: 40px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .fb-carousel__profile {
		margin-top: 5.33333vw;
	}
}

.fb-greenBox .fb-carousel__profile img {
	margin: auto;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .fb-carousel__profile img {
		width: 78.13333vw;
	}
}

.fb-greenBox .fb-carousel__profile--2024 img {
	margin: auto;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .fb-carousel__profile--2024 img {
		width: 81.33333vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox .fb-carousel__profile--2025 img {
		width: 81.33333vw;
	}
}

.fb-greenBox:before, .fb-greenBox:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: -5%;
	opacity: .6;
	pointer-events: none;
}

.fb-greenBox:before {
	background: url(https://assets.sakuramori.org/vault/img/bg-bloom-01.png) no-repeat;
	background-position: right 60px top 80px;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox:before {
		background-size: 20% auto;
		background-position: right 5% top 12%;
	}
}

.fb-greenBox:after {
	background: url(https://assets.sakuramori.org/vault/img/bg-bloom-02.png) no-repeat;
	background-position: left 60px bottom 24%;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox:after {
		background-size: 8% auto;
		background-position: left 5% top 18%;
	}
}

.fb-greenBox-title {
	position: relative;
	z-index: 2;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-title {
		width: 70.14085%;
		margin-bottom: -8%;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-title {
		width: 446px;
		margin-bottom: -45px;
	}
}

.fb-greenBox-title-icon {
	display: block;
	background: url(https://assets.sakuramori.org/vault/img/main-mark-01.png) no-repeat;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-title-icon {
		width: 30.12048%;
		background-size: contain;
		position: absolute;
		left: -7%;
		top: -16%;
	}
	.fb-greenBox-title-icon:before {
		content: '';
		display: block;
		padding-bottom: 100%;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-title-icon {
		width: 163px;
		height: 163px;
		background-size: contain;
		position: absolute;
		left: -206px;
		top: -15px;
	}
}

.fb-greenBox-l, .fb-greenBox-r {
	position: relative;
	z-index: 2;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-l .fb-greenBox-thumb {
		width: 17.33333vw;
		margin: 0 auto;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-l .fb-greenBox-thumb {
		width: 110px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-r .fb-greenBox-thumb {
		width: 16vw;
		margin: 0 auto;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-r .fb-greenBox-thumb {
		width: 94px;
	}
}

.fb-greenBox-c .fb-greenBox-thumb {
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-c .fb-greenBox-thumb {
		width: 17.6vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-c .fb-greenBox-thumb {
		width: 102px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-l .fb-greenBox-name {
		margin-top: 4vw;
		width: 37.33333vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-l .fb-greenBox-name {
		margin-top: 26px;
		width: 202px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-r .fb-greenBox-name {
		margin-top: 4vw;
		width: 28vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-r .fb-greenBox-name {
		margin-top: 31px;
		width: 151px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-c .fb-greenBox-name {
		margin-top: 4vw;
		width: 37.33333vw;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-c .fb-greenBox-name {
		margin-top: 26px;
		width: 202px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-btn {
		margin-top: 20px;
		width: 120px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-greenBox-btn {
		margin-top: 30px;
		width: 200px;
	}
}

.fb-carousel__wrap_2021 {
	position: relative;
}

.fb-carousel__wrap_2021 > span {
	display: block;
	position: absolute;
	right: 210px;
	top: -40px;
	z-index: 10;
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2021 > span {
		width: 9.33333vw;
		top: -6.66667vw;
		right: 16vw;
	}
	.fb-carousel__wrap_2021 > span img {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2021 > div {
		width: 20%;
	}
}

.fb-carousel__wrap_2021 .fb-greenBox-thumb {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2021 .fb-greenBox-thumb > img {
		width: 100%;
	}
	.fb-carousel__wrap_2021 .fb-greenBox-thumb .fb-greenBox-name img {
		width: 100%;
	}
}

.fb-carousel__wrap_2021 .fb-greenBox-thumb > img {
	display: inline;
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2021 .fb-greenBox-thumb > img {
		width: 80%;
	}
}

.fb-carousel__wrap_2021 .fb-greenBox-thumb .fb-greenBox-name {
	margin-top: 20px;
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2021 .fb-greenBox-thumb .fb-greenBox-name {
		margin-top: 4vw;
	}
}

.fb-carousel__wrap_2022 {
	align-items: flex-end;
	position: relative;
}

.fb-carousel__wrap_2022 > span {
	display: block;
	position: absolute;
	right: 210px;
	top: -40px;
	z-index: 10;
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2022 > span {
		width: 9.33333vw;
		top: -6.66667vw;
		right: 16vw;
	}
	.fb-carousel__wrap_2022 > span img {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2022 > div {
		width: 14%;
	}
	.fb-carousel__wrap_2022 > div.big-sp {
		width: 46.5%;
	}
}

.fb-carousel__wrap_2022 .fb-greenBox-thumb {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2022 .fb-greenBox-thumb > img {
		width: 100%;
	}
	.fb-carousel__wrap_2022 .fb-greenBox-thumb .fb-greenBox-name img {
		width: 100%;
	}
}

.fb-carousel__wrap_2022 .fb-greenBox-thumb > img {
	display: inline;
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2022 .fb-greenBox-thumb > img {
		width: 80%;
	}
}

.fb-carousel__wrap_2022 .fb-greenBox-thumb .fb-greenBox-name {
	margin-top: 20px;
}

@media only screen and (max-width: 767px) {
	.fb-carousel__wrap_2022 .fb-greenBox-thumb .fb-greenBox-name {
		margin-top: 4vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-greenBox-name-sp-wrap {
		margin: 2.66667vw 0 0 24.66667vw;
		display: flex;
		align-items: center;
	}
	.fb-greenBox-name-sp-wrap .name-img {
		width: 12.8vw;
		margin-right: 14.66667vw;
	}
	.fb-greenBox-name-sp-wrap .name-img img {
		width: 100%;
	}
	.fb-greenBox-name-sp-wrap .name-img.name-img2 {
		width: 12.8vw;
		margin: 0 0.66667vw 0 0;
	}
	.fb-greenBox-name-sp-wrap .name-img.name-img3 {
		width: 12.8vw;
		margin: 0;
	}
}

.fb-pinkBox {
	border: 3px solid #e95098;
	position: relative;
}

.fb-pinkBox .slick-arrow {
	position: absolute;
	background: url("../img/icon-arrow-right-pink.png") top left no-repeat;
	background-size: contain;
	width: 24px;
	height: 42px;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 2;
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* easeOutQuint */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	opacity: 1;
	outline: none;
}

.fb-pinkBox .slick-arrow:hover, .fb-pinkBox .slick-arrow:focus {
	opacity: 0.8;
	background: url("../img/icon-arrow-right-pink.png") top left no-repeat;
	background-size: contain;
}

@media only screen and (max-width: 767px) {
	.fb-pinkBox .slick-arrow {
		width: 3.2vw;
		padding-top: 5.73333vw;
		height: 0;
	}
}

.fb-pinkBox .slick-arrow.slick-next {
	right: 28px;
}

@media only screen and (max-width: 767px) {
	.fb-pinkBox .slick-arrow.slick-next {
		right: 4vw;
	}
}

.fb-pinkBox .slick-arrow.slick-next:hover {
	transform: translate(3px, -50%);
}

.fb-pinkBox .slick-arrow.slick-prev {
	left: 28px;
	transform: translate(0, -50%) scale(-1, 1);
}

@media only screen and (max-width: 767px) {
	.fb-pinkBox .slick-arrow.slick-prev {
		left: 4vw;
	}
}

.fb-pinkBox .slick-arrow.slick-prev:hover {
	transform: translate(-3px, -50%) scale(-1, 1);
}

.fb-pinkBox .slick-arrow.slick-disabled {
	opacity: 0.1;
}

.fb-pinkBox .slick-list {
	padding: 0;
	width: 100%;
	outline: none;
}

.fb-pinkBox .slick-slide {
	outline: none;
}

.fb-pinkBox .js-project-carousel {
	width: 100%;
}

/* table Add 20200203 */
.p-table {
	display: table;
	border: #e95098 3px solid;
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
	.p-table {
		border-radius: 0;
	}
}

.p-table__group {
	display: table-row-group;
	background: #FFF;
}

.p-table__group:nth-child(odd) {
	background: #f8f8f5;
}

.p-table__group > div:first-child {
	white-space: nowrap;
}

.p-table__head, .p-table__body {
	display: table-cell;
	padding: 20px 20px 20px 40px;
}

@media only screen and (max-width: 767px) {
	.p-table__head, .p-table__body {
		padding: 2.66667vw 0.93333vw;
	}
}

.p-table__head p, .p-table__body p {
	letter-spacing: 0.1rem;
}

@media only screen and (max-width: 767px) {
	.p-table__head p, .p-table__body p {
		letter-spacing: 0;
	}
}

.p-table__head {
	background: #e95098;
}

.p-table__head p {
	text-align: left;
	color: #FFF;
	font-size: 18px;
	white-space: nowrap;
}

@media only screen and (max-width: 767px) {
	.p-table__head p {
		font-size: 24px;
		font-size: 3.2vw;
	}
}

.p-table__head:last-child p {
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.p-table__head.c1 {
		width: 18%;
	}
	.p-table__head.c2 {
		width: 13%;
	}
	.p-table__head.c3 {
		width: 25%;
	}
	.p-table__head.c4 {
		width: 40%;
	}
	.p-table__head.c5 {
		width: 4%;
	}
}

.p-table__body p {
	text-align: left;
	font-size: 16px;
	color: #333;
}

@media only screen and (max-width: 767px) {
	.p-table__body p {
		font-size: 20px;
		font-size: 2.66667vw;
	}
}

.p-table__body:last-child p {
	text-align: center;
}

.fb-forwardbtn {
	position: relative;
	display: block;
	background: #e95098;
	color: #fff;
	text-decoration: none;
	padding: 1em;
	transition: opacity .3s ease;
}

@media only screen and (max-width: 767px) {
	.fb-forwardbtn {
		font-size: 1.2rem;
	}
}

@media only screen and (min-width: 768px) {
	.fb-forwardbtn {
		font-size: 1.3rem;
	}
}

.fb-forwardbtn:hover {
	opacity: .8;
	transition: opacity .3s ease;
}

.fb-forwardbtn:before {
	content: '';
	display: block;
	width: .7em;
	height: .7em;
	box-sizing: border-box;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto;
	transform: rotate(135deg);
}

@media only screen and (min-width: 768px) {
	.fb-bnr > li + li {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 767px) {
	.fb-bnr > li + li {
		margin-top: 10.66667vw;
	}
}

@media only screen and (max-width: 767px) {
	.fb-bnr2clm {
		margin-top: 40px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-bnr2clm {
		margin-top: 120px;
		display: flex;
		justify-content: center;
	}
}

@media only screen and (max-width: 767px) {
	.fb-bnr2clm > li {
		margin-top: 30px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-bnr2clm > li {
		margin: 0 30px;
	}
}

.fb-bnrBlock, a.fb-bnrBlock {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	background: #fff;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
	transition: opacity .3s ease;
}

@media only screen and (min-width: 768px) {
	.fb-bnrBlock, a.fb-bnrBlock {
		width: 340px;
		height: 100%;
	}
	.fb-bnrBlock:hover, a.fb-bnrBlock:hover {
		opacity: .8;
		transition: opacity .3s ease;
	}
}

.fb-bnrBlock-thumb, a.fb-bnrBlock-thumb {
	display: block;
}

.fb-bnrBlock-text, a.fb-bnrBlock-text {
	display: block;
	padding: 1em 2.1em;
}

@media only screen and (min-width: 768px) {
	.fb-bnrBlock-text, a.fb-bnrBlock-text {
		font-size: 1.6rem;
		line-height: 30px;
	}
}

.fb-snsArea {
	background: #fff;
}

@media only screen and (max-width: 767px) {
	.fb-snsArea {
		padding: 50px 0;
	}
}

@media only screen and (min-width: 768px) {
	.fb-snsArea {
		padding: 50px 0;
	}
}

.fb-snsList {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 767px) {
	.fb-snsList-li {
		margin: 0 10px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-snsList-li {
		margin: 0 20px;
	}
	.fb-snsList-li.typeLI {
		display: none;
	}
}

.fb-snsList-li a {
	display: flex;
	align-items: center;
	opacity: 1;
	transition: opacity .3s ease;
}

@media only screen and (max-width: 767px) {
	.fb-snsList-li a {
		width: 26px;
		height: 26px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-snsList-li a {
		width: 34px;
		height: 34px;
	}
}

.fb-snsList-li a:hover {
	opacity: .8;
	transition: opacity .3s ease;
}

/* tool */
.fb-imglink {
	display: block;
	opacity: 1;
	transition: opacity .3s ease;
}

.fb-imglink:hover {
	opacity: .8;
	transition: opacity .3s ease;
}

.fbjs-scrollfade {
	visibility: hidden;
	opacity: 0;
	transform: translateY(30px);
}

.fbjs-scrollfade--load {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
	transition: opacity 1s ease, transform .3s ease-out;
}

.fb-radius {
	border-radius: 12px;
	overflow: hidden;
}

.fb-resize {
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 767px) {
	.fb-hidden-sp {
		display: none;
	}
}

@media only screen and (min-width: 768px) {
	.fb-hidden-pc {
		display: none;
	}
}

/* slick */
.slick-prev,
.slick-next {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	background: transparent;
	color: transparent;
	padding: 0;
	border: none;
	outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	opacity: .8;
	outline: none;
	background: transparent;
	color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
	opacity: 0;
}

.slick-prev:before,
.slick-next:before {
	content: '';
	font-size: 20px;
	line-height: 1;
	color: inherit;
	opacity: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fb-footer {
	position: relative;
}

@media only screen and (max-width: 767px) {
	.fb-footer {
		margin-top: 60px;
		background: #fff;
	}
}

@media only screen and (min-width: 768px) {
	.fb-footer {
		margin-top: 50px;
		background: #e95098;
	}
}

@media only screen and (min-width: 768px) {
	.fb-footerList {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 40px 0;
	}
}

.fb-footerList-li {
	padding: 0 35px;
}

.fb-footerList-li a {
	text-decoration: none;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.fb-footerList-li a {
		display: block;
		border: 1px solid #d9d9d9;
		text-align: center;
		padding: 1em;
	}
	.fb-footerList-li a[target="_blank"]:after {
		content: '';
		display: inline-block;
		width: 10px;
		height: 10px;
		background: url(https://assets.sakuramori.org/vault/img/icon-blank-black.png) no-repeat;
		background-size: contain;
		position: absolute;
		right: 10px;
		top: 0;
		bottom: 0;
		margin: auto;
	}
}

@media only screen and (min-width: 768px) {
	.fb-footerList-li a {
		display: inline-block;
		color: #fff;
		font-size: 1.4rem;
	}
	.fb-footerList-li a[target="_blank"]:after {
		content: '';
		display: inline-block;
		width: 10px;
		height: 10px;
		background: url(https://assets.sakuramori.org/vault/img/icon-blank-white.png) no-repeat;
		background-size: contain;
		margin-left: .5em;
	}
}

.fb-footerList-li a:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	.fb-footerList-li + .fb-footerList-li {
		margin-top: 20px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-footerList-li + .fb-footerList-li {
		margin-left: 20px;
	}
}

.fb-footerList-cr {
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.fb-footerList-cr {
		background: #e95098;
		text-align: center;
		padding: 1.5em 0;
		font-size: 1rem;
		margin-top: 40px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-footerList-cr {
		margin-left: auto;
		font-size: 1rem;
	}
}

.fb-pagetop {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #e95098;
	position: fixed;
	bottom: 50px;
	z-index: 100;
	opacity: 0;
	transition: .3s ease;
}

@media only screen and (max-width: 767px) {
	.fb-pagetop {
		right: 20px;
		border-radius: 50%;
		overflow: hidden;
	}
}

@media only screen and (min-width: 768px) {
	.fb-pagetop {
		right: 50px;
	}
}

.fb-pagetop.is-show {
	opacity: 1;
	transition: .3s ease;
}

.fb-pagetop.is-fixed {
	position: absolute;
	z-index: 9;
	bottom: auto;
}

@media only screen and (max-width: 767px) {
	.fb-pagetop.is-fixed {
		top: -60px;
	}
}

@media only screen and (min-width: 768px) {
	.fb-pagetop.is-fixed {
		top: -100px;
	}
}

.fb-pagetop:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	position: absolute;
	top: 5px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
	.fb-wrapper {
		padding-top: 16.66667vw;
	}
}

@media only screen and (min-width: 768px) {
	.mv {
		overflow: hidden;
	}
}

.mv .mv-ttlwrap {
	position: relative;
	z-index: 1;
	width: 1200px;
}

@media only screen and (min-width: 768px) {
	.mv .mv-ttlwrap {
		margin: 40px auto auto;
	}
}

@media only screen and (max-width: 767px) {
	.mv .mv-ttlwrap {
		width: 100%;
	}
}

.mv .mv-ttl {
	position: absolute;
}

@media only screen and (min-width: 768px) {
	.mv .mv-ttl {
		top: 5px;
		left: 45px;
	}
}

@media only screen and (max-width: 767px) {
	.mv .mv-ttl {
		width: 64vw;
		top: 1.33333vw;
		left: 32.66667vw;
	}
}

.mv .mv-ttl img {
	width: 100%;
}

@media only screen and (min-width: 768px) {
	.mv .mv-text {
		position: absolute;
		width: 489px;
		top: 65px;
		right: 60px;
	}
}

.mv .mv-banner {
	position: absolute;
}

@media only screen and (min-width: 768px) {
	.mv .mv-banner {
		top: 220px;
		right: 60px;
		filter: drop-shadow(0 4px 1px rgba(105, 31, 52, 0.3));
	}
}

@media only screen and (max-width: 767px) {
	.mv .mv-banner {
		width: 39.06667vw;
		bottom: 4vw;
		left: 5.33333vw;
		filter: drop-shadow(0 0.8vw 0.53333vw rgba(105, 31, 52, 0.3));
	}
	.mv .mv-banner img {
		width: 100%;
	}
}

.mv .mv-banner .mv-banner-imglink {
	transition: opacity .3s ease;
}

.mv .mv-banner .mv-banner-imglink:hover {
	opacity: .8;
}

@media only screen and (max-width: 767px) {
	.mv .mv-banner .mv-banner-imglink {
		transition: none;
	}
	.mv .mv-banner .mv-banner-imglink:hover {
		opacity: 1;
	}
}

.mv .mv-obj1 {
	position: absolute;
	z-index: 0;
	display: block;
	pointer-events: none;
}

@media only screen and (min-width: 768px) {
	.mv .mv-obj1 {
		width: 543px;
		top: 50px;
		left: -240px;
	}
}

@media only screen and (max-width: 767px) {
	.mv .mv-obj1 {
		width: 72.4vw;
		top: 80.66667vw;
		left: -21.33333vw;
	}
	.mv .mv-obj1 img {
		width: 100%;
	}
}

@media only screen and (min-width: 768px) {
	.mv .mv-img {
		width: 1200px;
	}
}

.mv .mv-img img {
	display: block;
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 767px) {
	.mv .mv-logo {
		width: 14vw;
	}
	.mv .mv-logo img {
		width: 100%;
	}
}

.movie-thumb {
	display: block;
	position: relative;
	cursor: pointer;
}

.movie-thumb img {
	width: 100%;
}

@media only screen and (min-width: 768px) {
	.movie-thumb {
		flex: 0 0 510px;
	}
}

@media only screen and (max-width: 767px) {
	.movie-thumb {
		width: 100%;
		height: 50.26667vw;
	}
}

@media only screen and (max-width: 767px) {
	.movie-thumb:nth-child(2), .movie-thumb:nth-child(3), .movie-thumb:nth-child(4) {
		margin-top: 6.66667vw;
	}
}

.movie-thumb:before {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	content: '';
	transition: background 0.5s;
}

.movie-thumb:after {
	content: '';
	display: block;
	position: absolute;
	background: url("../img/icon-play.svg") 0 0 no-repeat;
	background-size: 100% auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.5s;
}

@media only screen and (min-width: 768px) {
	.movie-thumb:after {
		width: 100px;
		height: 100px;
	}
}

@media only screen and (max-width: 767px) {
	.movie-thumb:after {
		width: 12.66667vw;
		height: 12.66667vw;
	}
}

.movie-figcap {
	text-align: center;
	margin-top: 10px;
	font-size: 16px;
	letter-spacing: 0.1rem;
	color: #333;
}

@media only screen and (max-width: 767px) {
	.movie-figcap {
		margin-top: 2.66667vw;
		font-size: 26px;
		font-size: 3.46667vw;
	}
}

/* magnific popup styles
----------------------------------------------------------- */
/* close */
.mfp-iframe-holder button.mfp-close,
#inline-bnr button.mfp-close,
#catechin-effect button.mfp-close {
	width: 40px;
	height: 40px;
	text-indent: -9999px;
	font-size: 0;
	opacity: 1;
	font-weight: 100;
	font-family: 'Noto Sans Japanese',"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
	line-height: 0;
	letter-spacing: 0;
	padding: 0;
	right: -5px;
	top: -45px;
}

@media only screen and (max-width: 800px) {
	.mfp-iframe-holder button.mfp-close,
	#inline-bnr button.mfp-close,
	#catechin-effect button.mfp-close {
		width: 30px;
		height: 30px;
		right: 0;
		top: -35px;
	}
}

.mfp-iframe-holder button.mfp-close:before, .mfp-iframe-holder button.mfp-close:after,
#inline-bnr button.mfp-close:before,
#inline-bnr button.mfp-close:after,
#catechin-effect button.mfp-close:before,
#catechin-effect button.mfp-close:after {
	content: "";
	display: block;
	width: 40px;
	height: 1px;
	background-color: #fff;
	position: relative;
}

@media only screen and (max-width: 800px) {
	.mfp-iframe-holder button.mfp-close:before, .mfp-iframe-holder button.mfp-close:after,
	#inline-bnr button.mfp-close:before,
	#inline-bnr button.mfp-close:after,
	#catechin-effect button.mfp-close:before,
	#catechin-effect button.mfp-close:after {
		width: 30px;
	}
}

.mfp-iframe-holder button.mfp-close:before,
#inline-bnr button.mfp-close:before,
#catechin-effect button.mfp-close:before {
	transform: rotate(-45deg);
}

.mfp-iframe-holder button.mfp-close:after,
#inline-bnr button.mfp-close:after,
#catechin-effect button.mfp-close:after {
	transform: rotate(45deg);
}

/* bottom close */
.mfp-btm-close {
	width: 260px;
	height: 60px;
	position: absolute;
	bottom: -90px;
	left: 50%;
	margin-left: -130px;
}

@media only screen and (max-width: 800px) {
	.mfp-btm-close {
		width: 150px;
		height: 36px;
		margin-left: -75px;
		bottom: -60px;
	}
}

.mfp-btm-close a {
	font-size: 20px;
	font-size: 2.66667vw;
	letter-spacing: 0;
	vertical-align: middle;
	line-height: 1;
}

@media only screen and (max-width: 800px) {
	.mfp-btm-close a {
		font-size: 14px;
		font-size: 1.86667vw;
	}
}

.mfp-btm-close a:after {
	display: none;
}

.mfp-btm-close a .icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	line-height: 1;
	position: relative;
	margin-right: 10px;
}

@media only screen and (max-width: 800px) {
	.mfp-btm-close a .icon {
		width: 13px;
		height: 13px;
		margin-right: 5px;
	}
}

.mfp-btm-close a .icon:before, .mfp-btm-close a .icon:after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 8px;
}

@media only screen and (max-width: 800px) {
	.mfp-btm-close a .icon:before, .mfp-btm-close a .icon:after {
		width: 13px;
		top: 5px;
	}
}

.mfp-btm-close a .icon:before {
	transform: rotate(-45deg);
}

.mfp-btm-close a .icon:after {
	transform: rotate(45deg);
}

.mfp-btm-close a:hover .icon:before, .mfp-btm-close a:hover .icon:after {
	background-color: #000;
}

/* magnific popup animation
----------------------------------------------------------- */
/* fadein fadeOut
--------------------------------- */
/* overlay at start */
.mfp-fade.mfp-bg {
	position: fixed !important;
	opacity: 0;
	transition: all 0.4s ease;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.7;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	transition: all 0.4s ease;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-arrow {
	opacity: 0;
	transition: all 0.4s ease;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-arrow {
	opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-arrow {
	opacity: 0;
}

/* zoom in
--------------------------------- */
.mfp-zoom-in {
	/* start state */
	/* animate in */
	/* animate out */
}

.mfp-zoom-in .mfp-with-anim {
	opacity: 0;
	transition: all 0.2s ease-in-out;
	transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
	opacity: 1;
	transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
	transform: scale(0.8);
	opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

.mfp-iframe-holder .mfp-content {
	max-width: 1100px !important;
}

.inline-popup .mfp-content {
	max-width: 900px !important;
}

#tpl-pagetop-box p {
	line-height: 1.4;
}

@media only screen and (max-width: 767px) {
	#tpl-pagetop-box p {
		line-height: 1.2;
	}
}

.fb-section-special {
	background: #ffe9f1;
}

@media only screen and (max-width: 767px) {
	.fb-section-special .fb-section-title-text {
		width: 54.26667vw;
		margin-top: 5.33333vw;
	}
}

.fb-section-special .movie-thumb {
	width: 100%;
	margin: 0 auto;
}

.syokuju {
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.syokuju {
		width: 100%;
		margin: auto;
	}
	.syokuju img {
		width: 100%;
	}
}

/*# sourceMappingURL=style.css.map */
