@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

@media screen and (max-width: 980px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
}

html {
	-webkit-overflow-scrolling: touch;
	-webkit-font-smoothing: antialiased;
	font-weight: 900;
	letter-spacing: 0.08em;
	width: 100vw;
	scroll-behavior: smooth;
}

body {
	letter-spacing: normal;
	font-family: 'Noto Sans KR', 'Roboto', sans-serif;
}

img {
	vertical-align: top
}

.wrapper {
	display: flex;
	flex-direction: column;
}


/* ヘッダーブロック */

.header {
	position: fixed;
	top: 0;
	width: calc(100% - 80px);
	padding: 0 40px;
	background-color: white;
	z-index: 10;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	height: 100px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.header-sp {
	display: none;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 980px) {
	.header {
		display: none;
	}
	.header-sp {
		display: flex;
		position: fixed;
		width: calc(100% - 48px);
		padding: 0 24px;
		background-color: white;
		z-index: 10;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		height: 80px;
	}
	.header-sp-logo {
		width: 124px;
		height: 48px;
	}
	.header-sp-logo img {
		width: 100%;
		height: 100%;
	}
	#nav {
		position: absolute;
		top: 80px;
		right: -240px;
		width: 240px;
		height: 100vh;
		background: #ffffff;
		transition: .7s;
	}
	#nav ul li {
		list-style-type: none;
		font-size: 20px;
		width: 240px;
		height: 80px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#nav a {
		display: block;
		text-decoration: none;
		color: #000000;
		margin: 0 15px;
		padding: 10px;
		transition: .5s;
	}
	#hamburger {
		display: block;
		position: absolute;
		bottom: 25px;
		right: 24px;
		width: 40px;
		height: 27px;
		cursor: pointer;
		transition: .5s;
	}
	.inner_line {
		display: block;
		position: absolute;
		left: 0;
		width: 40px;
		height: 5px;
		background-color: #000;
		transition: .5s;
		border-radius: 4px;
	}
	#line1 {
		top: 0;
	}
	#line2 {
		top: 11px;
	}
	#line3 {
		bottom: 0px;
	}
	#nav.in {
		transform: translateX(-240px);
	}
	#hamburger.in #line1 {
		transform: translateY(11px) rotate(-45deg);
		top: 0;
	}
	#hamburger.in #line2 {
		opacity: 0;
	}
	#hamburger.in #line3 {
		transform: translateY(-11px) rotate(45deg);
		bottom: 0;
	}
	#nav_back {
		display: none;
	}
	@keyframes show {
		from {
			opacity: 0;
		}
		to {
			opacity: 0.72;
		}
	}
	#nav_back.in {
		display: block;
		position: fixed;
		width: 100%;
		height: calc(100vh - 80px);
		top: 80px;
		left: 0;
		background-color: rgba(0, 0, 0, 0.72);
		animation: show .1s linear 0s;
		z-index: -1;
	}
}

.header-logo {
	margin-right: 84px;
}

.header-menus {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.header-menus-item {
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0.04em;
	padding: 0 16px;
	color: #000;
}

.header-right {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.header-right-language-selecor {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 181px;
	height: 40px;
	background-color: #000;
	color: #FFF;
	padding: 0 16px;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0.04em;
}

.header-right-language-selecor a {
	display: inline-block;
	text-decoration: none;
	color: #FFF;
	font-weight: 400;
	font-size: 16px;
}

.header-right-language-selecor a.selected {
	color: #FF00C7;
}

.header-right-sns-icon {
	margin-left: 16px;
}


/* main-visualブロック */

.main-visual {
	width: 100%;
	height: 846px;
	position: relative;
	overflow: hidden;
	margin-top: 100px;
}

@media screen and (max-width: 980px) {
	.main-visual {
		height: 725px;
		margin-top: 80px;
	}
}

.main-visual-image {
	width: 100%;
	height: 846px;
	object-fit: cover;
	position: fixed;
	z-index: -1;
	overflow: hidden;
}

@media screen and (max-width: 980px) {
	.main-visual-image {
		height: 725px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

.main-visual-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 980px) {
	.main-visual-image img {
		object-position: 80%;
	}
}

.main-visual .left-container {
	position: absolute;
	display: flex;
	flex-direction: column;
	border-top: 900px solid #f4db4d
;
	width: 232px;
	height: 0px;
	border-right: 352px solid transparent;
	left: 0;
	color: white;
}

@media screen and (max-width: 1280px) {
	.main-visual .left-container {
		width: 163px;
		border-right: 330px solid transparent;
		border-top: 900px solid #f4db4d
;
	}
}

@media screen and (max-width: 980px) {
	.main-visual .left-container {
		width: 100%;
		height: 118px;
		background-color: #f4db4d;
		border: none;
	}
	.main-visual .left-container::after {
		content: '';
		position: absolute;
		bottom: -16.9vw;
		left: 0;
		border-top: 17vw solid #f4db4d;
		border-right: 100vw solid transparent;
		z-index: 1;
	}
}

.main-visual div.top-text {
	position: absolute;
	bottom: 582px;
	left: 80px;
	width: 400px;
	font-style: normal;
	font-size: 100px;
	line-height: 100%;
	letter-spacing: 0.04em;
}

.main-visual div.mid-text {
	position: absolute;
	bottom: 302px;
	left: 80px;
	font-style: normal;
	font-size: 24px;
	line-height: 60px;
	width: 720px;
	/* or 60px */
	color: #FFFFFF;
	text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.87);
}

.main-visual a.bottom-image {
	position: absolute;
	display: block;
	bottom: 150px;
	left: 80px;
	height: 108px;
}

.main-visual a.bottom-image img {
	height: 100%;
}

@media screen and (max-width: 980px) {
	.main-visual div.top-text {
		left: 40px;
		bottom: auto;
		top: 32px;
		width: calc(100vw * 464 / 980);
		z-index: 4;
		filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
		min-width: 295px;
		max-width: 464px;
	}
	.main-visual div.top-text img {
		width: 100%;
		height: 100%;
	}
	.main-visual a.bottom-image-sp {
		position: absolute;
		display: block;
		bottom: calc(80 / 375 * 100vw);
		left: 40px;
		width: 295px;
	}
	.main-visual a.bottom-image-sp img {
		width: 100%;
	}
}

@media screen and (max-width: 375px) {
	.main-visual div.top-text {
		left: 0;
		right: 0;
		margin: auto;
		bottom: -42px;
		width: 295px;
		height: 136px;
		z-index: 4;
		filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	}
	.main-visual a.bottom-image-sp {
		left: 0;
		right: 0;
		margin: auto;
	}
}

.main-content {
	position: absolute;
	background-color: white;
	top: 946px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

@media screen and (max-width: 980px) {
	.main-content {
		top: 805px;
	}
}

.overview {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 1440px;
}

.overview-upper {
	margin-bottom: 80px;
	padding: 0 80px;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	position: relative;
	height: 595px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

@media screen and (max-width: 980px) {
	.overview-upper {
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		padding: 0 40px;
		height: auto;
	}
}

.overview-upper-left-title {
	font-style: normal;
	font-size: 56px;
	line-height: 100%;
	/* identical to box height, or 56px */
	letter-spacing: 0.04em;
	color: #000000;
	margin-top: calc(80px - 100px);
	padding-top: 100px;
}

@media screen and (max-width: 980px) {
	.overview-upper-left-title {
		text-align: center;
		margin-top: calc(40px - 100px);
		font-style: normal;
		font-size: 32px;
		line-height: 100%;
		/* identical to box height, or 32px */
		text-align: center;
		letter-spacing: 0.04em;
		color: #000000;
	}
}

.overview-upper-left-description {
	font-style: normal;
	font-size: 24px;
	line-height: 200%;
	/* or 48px */
	letter-spacing: 0.04em;
	color: #000000;
	margin-top: 40px;
	width: calc(45% - 80px);
}

.overview-upper-left-now-sale {
	font-style: normal;
	font-weight: 900;
	font-size: 40px;
	line-height: 100%;
	width: 45%;
	/* identical to box height, or 40px */
	letter-spacing: 0.04em;
	color: #f4db4d
;
	margin-top: 40px;
}

.overview-upper-left-buttons {
	margin-top: 31px;
}

a.overview-upper-left-button {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: calc(45% - 80px);
	line-height: 50px;
	background: #f4db4d
;
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	text-align: center;
	margin-top: 8px;
	font-size: 18px;
}

@media screen and (max-width: 980px) {
	.overview-upper-left-description {
		margin-top: 24px;
		font-style: normal;
		font-size: 16px;
		line-height: 175%;
		/* or 28px */
		letter-spacing: 0.04em;
		color: #000000;
    	width: 100%;
	}
	.overview-upper-left-description-first {
		margin-top: 24px;
		font-style: normal;
		font-size: 16px;
		line-height: 175%;
		/* or 28px */
		margin-bottom: 8px;
		letter-spacing: 0.04em;
		color: #000000;
	}
	.overview-upper-left-now-sale {
		width: 100%;
	}

	a.overview-upper-left-button {
		width: 100%;
		margin-top: 16px;
	}
}


.overview-upper-left-buttons-tw {
    display: grid;
	width: 100%;
	margin-top: 31px;
}

@media screen and (min-width: 980px){
	.overview-upper-left-buttons-tw {
		grid-gap: 12px;
		grid-template-columns: repeat(2, 1fr);
		width: 45%;
	}

}

.overview-upper-left-button-tw  {
	display: grid;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 100%;
	line-height: 50px;
	background: #f4db4d
;
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	text-align: center;
	margin-top: 8px;
	font-size: 18px;
}

a.overview-upper-left-button:hover {
	background: #52E6F4;
}

.overview-upper-right {
	width: 46%;
	position: absolute;
	right: 80px;
	max-width: 640px;
	bottom: -10px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

@media screen and (max-width: 980px) {
	.overview-upper-right {
		position: relative;
		width: 100%;
		margin-top: -10%;
		right: initial;
	}
}

.overview-upper-right img {
	width: 100%;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.overview-samples {
	display: -ms-grid;
	display: grid;
	column-gap: 10px;
	row-gap: 12px;
	grid-template-columns: repeat(auto-fit, 419px);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 80px;
}

@media screen and (max-width: 980px) {
	.overview-samples {
		grid-template-columns: repeat(auto-fit, 295px);
	}
}

.overview-samples .overview-samples-sample {
	z-index: 3;
}

.overview-samples .overview-samples-sample img {
	width: 100%;
}

.author-list {
	background: #f4db4d
;
	margin-top: 160px;
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.author-list::before {
	content: '';
	position: absolute;
	top: -318px;
	left: 0;
	border-bottom: 319px solid #f4db4d
;
	border-left: 100vw solid transparent;
	z-index: 1;
}

.author-list::after {
	content: '';
	position: absolute;
	bottom: -318px;
	left: 0;
	border-top: 319px solid #f4db4d;
	border-right: 100vw solid transparent;
	z-index: 1;
}

@media screen and (max-width: 980px) {
	.author-list::before {
		top: -84px;
		border-bottom: 84px solid #f4db4d
;
	}
	.author-list::after {
		bottom: -84px;
		border-top: 84px solid #f4db4d
;
	}
}

.author-list-authors {
	display: -ms-grid;
	display: grid;
	column-gap: 40px;
	row-gap: 64px;
	grid-template-columns: repeat(auto-fit, 180px);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-bottom: 60px;
	max-width: 1440px;
	width: 100%;
}

@media screen and (max-width: 980px) {
	.author-list-authors {
		column-gap: 15px;
		row-gap: 24px;
	}
}

.author-list-title {
	font-style: normal;
	font-size: 64px;
	line-height: 100%;
	/* identical to box height, or 64px */
	text-align: center;
	letter-spacing: 0.04em;
	color: #FFFFFF;
	margin-bottom: 25px;
	margin-top: -100px;
	padding-top: 100px;
}

@media screen and (max-width: 980px) {
	.author-list-title {
		font-style: normal;
		font-size: 32px;
		line-height: 100%;
		/* identical to box height, or 32px */
		text-align: center;
		letter-spacing: 0.04em;
		color: #FFFFFF;
		margin-top: (26px - 100px);
		margin-bottom: 8px;
	}
}

.author-list-subtitle {
	font-style: normal;
	font-size: 18px;
	line-height: 100%;
	/* identical to box height, or 18px */
	text-align: center;
	letter-spacing: 0.04em;
	color: #FFFFFF;
	margin-bottom: 80px;
}

@media screen and (max-width: 980px) {
	.author-list-subtitle {
		width: calc(100% - 80px);
		margin-bottom: 24px;
	}
}

.profile-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.profile-container .profile-thumb img {
	width: 180px;
}

.profile-container .profile-thumb {
	margin-bottom: 16px;
}

.profile-container .profile-texts {
	font-style: normal;
	font-weight: normal;
	font-size: 21px;
	line-height: 275%;
	/* identical to box height, or 58px */
	text-align: center;
	vertical-align: center;
	letter-spacing: 0.04em;
	color: #FFFFFF;
	height: 58px;
}

.profile-container .profile-links {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.profile-container .profile-links a {
	padding: 0 8px;
}

.foot-section {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.foot-section .foot-section-container {
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-position: 80%;
}

.foot-section .foot-section-container::before {
	/* 透過した黒を上から重ねるイメージ */
	background-color: rgba(0, 0, 0, 0.4);
	/* 自由に位置指定 */
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}

.foot-section .background img {
	width: 100%;
	height: 100%;
}

.foot-section-content {
	max-width: 1000px;
}

@media screen and (max-width: 980px) {
	.foot-section-content {
		width: calc(100% - 80px);
	}
}

.foot-section-container h2 {
	font-style: normal;
	font-weight: 900;
	font-size: 64px;
	line-height: 100%;
	/* identical to box height, or 64px */
	text-align: center;
	letter-spacing: 0.04em;
	color: white;
	z-index: 3;
	margin-top: (100px - 100px);
	padding-top: 100px;
	margin-bottom: 80px;
}

.foot-section-container p {
	position: relative;
	z-index: 3;
	font-style: normal;
	font-size: 24px;
	line-height: 200%;
	/* or 48px */
	text-align: left;
	letter-spacing: 0.04em;
	color: #FFFFFF;
}

@media screen and (max-width: 980px) {
	.foot-section-container h2 {
		margin-bottom: 24px;
		font-style: normal;
		font-size: 32px;
		line-height: 150%;
		/* or 48px */
		text-align: center;
		letter-spacing: 0.04em;
		color: #FFFFFF;
		z-index: 3;
		padding: 0 40px;
		margin-top: calc(0px - 100px);
		padding-top: 100px;
	}
	.foot-section-container p {
		font-style: normal;
		font-size: 16px;
		line-height: 200%;
		/* or 32px */
		text-align: center;
		letter-spacing: 0.04em;
		color: #FFFFFF;
	}
	.foot-section-container h3 {
		font-style: normal;
		font-size: 24px;
		line-height: 100%;
		/* identical to box height, or 24px */
		text-align: center;
		letter-spacing: 0.04em;
		color: #FFFFFF;
	}
}

.foot-section-container h3 {
	position: relative;
	z-index: 3;
	font-style: normal;
	font-size: 40px;
	line-height: 100%;
	/* identical to box height, or 40px */
	text-align: center;
	letter-spacing: 0.04em;
	margin-top: 80px;
	color: #FFFFFF;
}

@media screen and (max-width: 980px) {
	.foot-section-container p {
		font-style: normal;
		font-size: 16px;
		line-height: 200%;
		/* or 32px */
		text-align: center;
		letter-spacing: 0.04em;
		color: #FFFFFF;
	}
	.foot-section-container h3 {
		font-style: normal;
		font-size: 24px;
		line-height: 100%;
		/* identical to box height, or 24px */
		text-align: center;
		letter-spacing: 0.04em;
		color: #FFFFFF;
	}
}

.foot-section-container-guide {
	font-style: normal;
	font-size: 24px;
	line-height: 200%;
	letter-spacing: 0.04em;
	margin-top: 40px;
	color: #FFFFFF;
}

@media screen and (max-width: 980px) {
	.foot-section-container-guide {
		position: relative;
		z-index: 3;
		font-style: normal;
		font-size: 16px;
		line-height: 200%;
		/* or 32px */
		letter-spacing: 0.04em;
		color: #FFFFFF;
		margin-top: 40px;
	}
}

.foot-section-content {
	display: flex;
	flex-direction: column;
	z-index: 3;
}

.google-iframe {
	position: relative;
	width: 0;
	height: 0;
	padding: 200px 50%;
	align-self: center;
	margin-top: 40px;
}

@media screen and (max-width: 980px) {
	.google-iframe {
		padding: 160px 50%;
	}
}

.google-iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.special-bonus {
	background: #FFFFFF;
	border-radius: 8px;
	padding: 0 40px 40px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 41px;
	max-width: 500px;
	align-self: center;
}

.special-bonus .special-bonus-content {
	font-style: normal;
	font-size: 16px;
	line-height: 150%;
	/* identical to box height, or 16px */
	letter-spacing: 0.04em;
	color: #000000;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.special-bonus .special-bonus-content h4 {
	font-style: normal;
	font-size: 24px;
	line-height: 100%;
	/* identical to box height, or 24px */
	letter-spacing: 0.04em;
	margin-top: 40px;
	margin-bottom: 16px;
	color: #f4db4d
;
}

.special-bonus .special-bonus-content img  {
	width: 100%;
}

@media screen and (max-width: 980px) {
	.special-bonus {
		padding: 0 24px 24px 24px;
	}
	.special-bonus .special-bonus-content {
		font-style: normal;
		font-size: 14px;
		line-height: 125%;
		/* or 17px */
		letter-spacing: 0.04em;
		color: #000000;
	}
	.special-bonus .special-bonus-content h4 {
		font-style: normal;
		font-size: 16px;
		line-height: 150%;
		/* or 24px */
		letter-spacing: 0.04em;
		margin-top: 24px;
		margin-bottom: 8px;
	}
}

.attend-section {
	font-style: normal;
	font-size: 16px;
	line-height: 200%;
	/* or 32px */
	letter-spacing: 0.04em;
	color: #FFF;
	margin-top: 40px;
	margin-bottom: 250px;
	word-break: break-all;
}

@media screen and (max-width: 980px) {
	.attend-section {
		margin-bottom: 80px;
	}
}

.attend-section div.break {
	margin-bottom: 32px;
}

.cheer-section {
	font-style: normal;
	font-size: 16px;
	line-height: 200%;
	/* or 32px */
	letter-spacing: 0.04em;
	color: #FFF;
	word-break: break-all;
	background: white;
	position: relative;
	min-height: 500px;
	width: 100%;
	margin-top: 318px;
	z-index: 3;
}

.cheer-section-container {
	margin-top: -318px;
}

.cheer-section-title {
	font-style: normal;
	font-size: 64px;
	line-height: 100%;
	/* identical to box height, or 64px */
	text-align: center;
	letter-spacing: 0.04em;
	color: #000;
	margin-bottom: 96px;
	padding-top: 100px;
}

.cheer-section .cheer-section-description {
	margin-bottom: 80px;
}

.cheer-section .cheer-section-description p {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	font-size: 24px;
	line-height: 200%;
	text-align: center;
	letter-spacing: 0.04em;
	color: #000000;
}

.cheer-section .cheer-section-step-blocks {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.cheer-section  .cheer-section-step-block {
	display: flex;
	flex-direction: column;	
}

.cheer-section .cheer-section-step-block h3 {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	font-size: 32px;
	line-height: 100%;
	text-align: center;
	letter-spacing: 0.04em;
	color: #f4db4d;
}

.cheer-section .cheer-section-step-block p {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	font-size: 24px;
	line-height: 200%;
	text-align: center;
	letter-spacing: 0.04em;
	color: #000000;
}

.cheer-section .cheer-section-step-block img {
	width: 261px;
}

.cheer-section .cheer-section-user-profile{
	display: flex;
	flex-direction: row;
}

.cheer-section .cheer-section-user-profile img {
	width: 261px;
	height: 261px;
	background-color: gray	;
}

.cheer-section .cheer-section-user-profile .cheer-section-user-profile-descriptions {
	color: black;
	display: flex;
	flex-direction: column;
}

.cheer-section .cheer-section-user-profile .cheer-section-user-profile-description-name {
	color: black;
}

.cheer-section .cheer-section-user-profile .cheer-section-user-profile-description-sns {
	color: black;
}

.cheer-section .cheer-section-user-profile .cheer-section-user-profile-description-text {
	color: black;
}



.cheer-section .cheer-section-description p.break {
	margin-bottom: 64px;
}

.cheer-section .cheer-section-content h2 {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	font-size: 48px;
	line-height: 100%;
	text-align: center;
	letter-spacing: 0.04em;
	color: #f4db4d;
}

.cheer-section::after {
	content: '';
	position: absolute;
	left: 0;
	border-top: 319px solid white;
;
	border-right: 100vw solid transparent;
	z-index: 1;
	bottom: -319px;
}

.footer {
	background: #FFF;
	position: relative;
	height: 80px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.footer::before {
	content: '';
	position: absolute;
	top: -319px;
	left: 0;
	border-bottom: 320px solid #f4db4d
;
	border-left: 100vw solid transparent;
	z-index: 2;
}

@media screen and (max-width: 980px) {
	.footer {
		flex-direction: column;
		justify-content: center;
		height: auto;
	}
}

@media screen and (max-width: 980px) {
	.footer::before {
		top: -84px;
		border-bottom: 84px solid #f4db4d
;
	}
}

.footer-logo {
	width: 800px;
	height: 71px;
	color: #FFFFFF;
	position: absolute;
	top: -160px;
	right: 80px;
	z-index: 3;
}

.footer-logo img {
	width: 100%;
}

@media screen and (max-width: 980px) {
	.footer-logo {
		width: 312px;
		height: 32px;
		font-style: normal;
		font-size: 40px;
		line-height: 100%;
		/* identical to box height, or 40px */
		text-align: right;
		letter-spacing: 0.04em;
		color: #FFFFFF;
		top: -56px;
		right: 40px;
	}
}

.footer-copyright {
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 100%;
	/* identical to box height, or 16px */
	color: #000000;
	margin-left: 80px;
}

@media screen and (max-width: 980px) {
	.footer-copyright {
		margin-left: 0px;
		margin-top: 24px;
	}
}

.footer-links {
	display: flex;
	flex-direction: row;
	font-style: normal;
	font-size: 16px;
	line-height: 100%;
	/* identical to box height, or 16px */
	letter-spacing: 0.04em;
	align-items: center;
	color: #000000;
	margin-right: 80px;
}

.footer-link {
	height: 48px;
	margin-left: 16px;
}

.footer-link img {
	height: 100%;
}

@media screen and (max-width: 980px) {
	.footer-links {
		margin-top: 16px;
		margin-right: 0px;
		justify-content: center;
		padding-bottom: 16px;
	}
	.footer-link {
		height: 56px;
	}
}


/* iosで背景固定するための工夫 */

.over_scroll .main-visual-image {
	height: 100vh;
}

.over_scroll .main-visual-image img {
	object-position: 80%;
}

.over_scroll .main-content {
	background-color: transparent;
}