@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

body * {
	box-sizing: border-box;
}

html,
body {
	font-size: 13px;
}

@media screen and (min-width: 900px) {

	html,
	body {
		font-size: 15px;
	}
}

body {
	margin: 0;
	padding: 0;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo,
		"メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	-webkit-text-size-adjust: none;
	background: #fff;
	color: #555;
	line-height: 2;
	overflow-x: hidden;
}

.up,
.down,
.transform1,
.transform2 {
	position: relative;
	opacity: 0;
}

.upstyle,
.downstyle,
.transform1style,
.transform2style {
	opacity: 1;
	transition: 1.5s 0.8s;
}

.up {
	bottom: -20px;
}

.upstyle {
	bottom: 0px;
}

.down {
	top: -20px;
}

.downstyle {
	top: 0px;
}

.transform1 {
	transform: scaleX(0);
}

.transform1style {
	transform: scaleX(1);
}

.transform2 {
	transform: perspective(400px) translateZ(-70px) rotateX(50deg);
}

.transform2style {
	transform: perspective(400px) translateZ(0px) rotateX(0deg);
}

.blur {
	opacity: 0;
	filter: blur(30px);
	transform: scale(1.1);
}

.blurstyle {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	transition: 1s 0.5s;
}

@keyframes transform3 {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(1.1);
	}

	70% {
		transform: scale(0.99);
	}

	100% {
		transform: scale(1);
	}
}

.transform3 {
	transform: scale(0);
}

.transform3style {
	animation: transform3 0.3s ease-out 0.5s both;
}

#mainimg {
	position: relative;
	width: 100vw;
	height: 120vh;
	overflow: hidden;
	z-index: -1;
}

#mainimg video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 0;
	transition: opacity 0.5s ease;
	will-change: opacity;
	z-index: 0;
}

#mainimg video.active {
	opacity: 1;
	z-index: 1;
}

:root {
	--primary-color: #b2861e;
	--primary-inverse-color: #fff;
	--secondary-color: #3f310e;
	--secondary-inverse-color: #fff;
	--accent-color: #c43311;
	--accent-inverse-color: #fff;
	--content-space: 4rem;
}

@keyframes animation1 {
	0% {
		left: -200px;
	}

	100% {
		left: 0px;
	}
}

@keyframes opa1 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

figure {
	margin: 0;
}

dd {
	margin: 0;
}

nav,
ul,
li,
ol {
	margin: 0;
	padding: 0;
}

nav ul {
	list-style: none;
}

table {
	border-collapse: collapse;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

video {
	max-width: 100%;
}

iframe {
	width: 100%;
}

input {
	font-size: 1rem;
}

section {
	padding: 30px 0px;
}

a {
	color: inherit;
	transition: 0.3s;
}

a:hover {
	filter: brightness(1.1);
}

#container {
	position: relative;
	animation: opa1 1s 1s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}

header {
	padding: 0 2rem;
	color: #fff;
	position: absolute;
	width: 100%;
}

header a {
	color: inherit;
}

#logo {
	padding: 0;
	margin: 0;
}

#logo a {
	text-decoration: none;
}

#logo img {
	display: block;
	width: 240px;
}

@media screen and (min-width: 900px) {
	header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-color: #fff;
		height: 6rem;
	}
}

#header-box * {
	margin: 0;
	padding: 0;
}

#header-box .btn {
	list-style: none;
	display: flex;
	gap: 1rem;
}

#header-box .btn a {
	display: flex;
	text-decoration: none;
	padding: 0.6333rem 2rem;
	border-radius: 30px;
	text-align: center;
	flex-direction: row;
	align-items: center;
	height: 55px;
	width: 318px;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
}

#header-box .btn i {
	margin-right: 1rem;
	transform: scale(1.4);
}

.social-link a {
	margin: 0px 10px;
}

#top-box .btn {
	list-style: none;
	display: flex;
	gap: 5rem;
}

#top-box .btn li {
	width: 100%;
}

#top-box .btn a {
	display: flex;
	text-decoration: none;
	padding: 0.5rem 2rem;
	border-radius: 50px;
	text-align: center;
	flex-direction: row;
	align-items: center;
	height: 90px;
	width: 100%;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width: 500px) {
	#header-box .btn {
		display: inline-block;
	}

	#header-box .btn li {
		margin-bottom: 0.5rem;
	}
}

#footer * {
	margin: 0;
	padding: 0;
}

#footer ul {
	list-style: none;
}

#footer {
	background: #fff;
	color: #000;
	padding: var(--content-space);
}

.footer-div {
	width: 1000px;
	justify-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: #636363;
}

#footer div.footer2 {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: right;
	color: #636363;
}

@media screen and (min-width: 700px) {
	#footer {
		flex: 1;
		width: 100vw;
	}

	#footer div.footer1 {
		text-align: left;
		width: 40%;
		color: #636363;
	}
}

#footer small {
	display: block;
	margin-top: 2rem;
	color: #636363;
}

#footer .sns {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

#footer .sns i {
	font-size: 30px;
}

#footer .iframe {
	width: 100%;
	height: 0;
	padding-top: 56.25% !important;
	position: relative;
	overflow: hidden;
}

#footer .iframe iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

.footer-logo {
	max-width: 234px;
}


.pagetop-show {
	display: block;
}

.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0, 0, 0, 0.2);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}


.menu-btn {
	width: 30px;
	height: 30px;
	position: relative;
	z-index: 2;
	overflow: hidden;
	cursor: pointer;
}

.menu-btn .bar {
	width: 30px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 4px;
	transform: translate(-50%, -50%);
	background-color: #000;
	transition: all 0.3s ease-in-out;
}

header .active .bar {
	width: 30px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 4px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	transition: all 0.3s ease-in-out;
}

.menu-btn .bar:nth-of-type(2) {
	top: calc(50% - 9px);
}

.menu-btn .bar:nth-of-type(3) {
	top: calc(50% + 9px);
}

.menu-btn.active .bar:nth-of-type(1) {
	display: none;
}

.menu-btn.active .bar:nth-of-type(2) {
	top: 50%;
	transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active .bar:nth-of-type(3) {
	top: 50%;
	transform: translate(-50%, 0%) rotate(-45deg);
}

.nav {
	position: fixed;
	top: 0%;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
	background: #000000;
	transform: translateX(100%);
	transition: transform 0.5s;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav.active {
	transform: translateX(0);
}

.nav .nav__list_item {
	list-style-type: none;
}

.nav__link {
	color: #fff;
	font-size: 32px;
	font-weight: bold;
}

.top-right {
	display: flex;
	flex-direction: row;
	gap: 3rem;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.social-link img {
	width: 30px;
}

.copywrite {
	background-color: #000;
	color: #fff;
	padding: 10px 0px;
}

.footer-logo-text {
	font-size: 22px;
	padding-top: 10px !important;
	color: #000;
}

.footer-tel {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 2rem;
	color: #000;
	margin: 30px 0px !important;
	padding: 15px 0px !important;
	font-size: 24px;
	border-top: solid 2px #ccc;
	border-bottom: solid 2px #ccc;
	justify-content: center;
}

.footer-link {
	width: 80%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 3rem;
}

.footer-link-item {
	display: flex;
	flex-direction: column;
}

.footer-link-item a {
	text-decoration: none;
	font-size: 12px;
}

#message .top-message {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#message .title {
	font-size: 56px;
	font-weight: bold;
	color: #000;
	line-height: 1;
}

#message .description1 {
	font-size: 18px;
	color: #000;
	text-align: center;
	margin: 0;
}

#message .description2 {
	font-size: 42px;
	font-weight: bold;
	color: red;
	text-align: center;
	line-height: 1.5;
}

.bg-grey {
	position: relative;
	z-index: 0;
}

.bg-grey::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/grey-bg.png);
	background-repeat: repeat;
	opacity: 0.2;
	/* 20% 不透明 */
	z-index: -1;
}

#about {
	position: relative;
}

#about .bg-text {
	position: absolute;
	top: -2%;
	right: -1%;
	color: #E9E6E5;
	font-size: 10vw;
	font-weight: bold;
	opacity: 0.5;
	line-height: 1;
	margin: 0;
}

#about .about-message {
	padding: 50px 50px 50px 100px;
}

#about .title {
	color: red;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#about .description1 {
	color: #000;
	font-weight: bold;
}

#about .description2 {
	font-size: 12px;
	color: #000;
}


#people {
	position: relative;
	display: flex;
	flex-direction: row;
}

#people .bg-text {
	position: absolute;
	top: -1%;
	right: 0%;
	color: #E9E6E5;
	font-size: 10vw;
	font-weight: bold;
	opacity: 0.5;
	line-height: 1;
	margin: 0;
}

#people .people-message {
	padding: 150px 50px 50px 100px;
	width: 25%;
}

#people .title {
	color: red;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#people .description1 {
	color: #000;
	font-weight: bold;
}

#people .description2 {
	font-size: 12px;
	color: #000;
}

#people .people-slider {
	margin-top: 100px;
	display: flex;
	flex-direction: row;
	gap: 4rem;
}

#people .people-item {}

#people .people-item img {
	padding: 20px;
}

#people .people-item img:hover {
	transform: scale(1.02);
	transition: transform 0.3s ease;
}

#people .people-item .title {
	font-size: 20px;
	color: #000;
}

#people .people-item .desc {
	font-size: 16px;
	border-bottom: solid 1px #000;
	padding-bottom: 5px;
	margin: 20px 0px 5px 0px;
}

#people .people-item .name {
	font-size: 14px;
}


#badge {
	position: relative;
	background-color: #C4C4C4;
}

#badge .badge-wrapper {
	padding: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 4rem;
}

#badge .badge-item {
	width: 30%;
	padding: 40px;
	background: #fff;
	border-radius: 15px;
}

#badge .title {
	color: #0073DA;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#badge .description1 {
	color: #000;
	font-weight: bold;
	margin: 10px 0px;
}

#badge .description2 {
	font-size: 12px;
	color: #000;
	margin: 0;
}

#question {
	background-color: #fff;
}

#question .question-wrapper {
	padding: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 4rem;
}

#question .question-wrapper .bg-text {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #E9E6E5;
	font-size: 14vw;
	font-weight: bold;
	opacity: 0.5;
	line-height: 1;
	margin: 0;
	text-align: center;
}

#question .question-message {
	position: relative;
	width: 64%;
	padding: 100px 0px 50px 0px;
	background: #0073DA;
	border-radius: 15px;
	text-align: center;
}

#question .title {
	color: #fff;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#question .description1 {
	color: #fff;
	font-weight: bold;
	margin: 10px 0px;
}

#question .description2 {
	font-size: 12px;
	color: #fff;
	margin: 0;
}


#news {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

#news .news-message {
	width: 60%;
	text-align: center;
}

#news .title {
	color: #000;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#news .description1 {
	color: #000;
	font-weight: bold;
}

#news .news-wrapper {
	display: flex;
	flex-direction: row;
	gap: 4rem;
}

#news .news-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

#news .news-item img {}

#news .news-item img:hover {
	transform: scale(1.02);
	transition: transform 0.3s ease;
}

#news .news-item .desc {
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	color: #000;
	margin: 0;
	padding-top: 10px;
}

#news .news-item .date {
	font-size: 14px;
	margin: 0;
	line-height: 1;
	color: #000;
}


#other-contents {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	background: red;
	padding: 80px 0px;
}

#other-contents .other-contents-message {
	width: 60%;
	text-align: center;
}

#other-contents .title {
	color: #fff;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#other-contents .description1 {
	color: #fff;
	font-weight: bold;
}

#other-contents .btn-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#other-contents .btn-wrapper a {
	color: #000;
	background-color: #fff;
	border: solid 1px #fff;
	text-decoration: none;
	padding: 20px;
	line-height: 1;
	width: 31%;
	border-radius: 8px;
	font-size: 15px;
}

#other-contents .btn-wrapper a:hover {
	color: #fff;
	background-color: red;
	border: solid 1px #fff;
	text-decoration: none;
	padding: 20px;
	line-height: 1;
	width: 31%;
	border-radius: 8px;
	font-size: 15px;
	transition: transform 0.3s ease;
}

#reversal {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 140px 0px 100px 0px;
}

#reversal .bg-text {
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translate(-50%);
	color: #E9E6E5;
	font-size: 10vw;
	font-weight: bold;
	opacity: 0.5;
	line-height: 1;
	margin: 0;
	z-index: -1;
}

#reversal .reversal-message {
	width: 60%;
	text-align: center;
}

#reversal .title {
	color: red;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#reversal .title span {
	color: red;
	font-size: 80px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#reversal .description1 {
	color: #000;
	line-height: 2.5;
	margin-top: 40px;
}

#reversal .description2 {
	color: red;
	font-weight: bold;
	font-size: 32px;
	line-height: 1.5;
	margin-bottom: 80px;
}

#reversal a {
	color: #fff;
	background-color: red;
	border: solid 1px red;
	text-decoration: none;
	padding: 20px 120px;
	line-height: 1;
	border-radius: 8px;
	font-size: 15px;
}

#reversal a:hover {
	color: red;
	background-color: #fff;
	border: solid 1px red;
	text-decoration: none;
	padding: 20px 120px;
	line-height: 1;
	border-radius: 8px;
	font-size: 15px;
	transition: transform 0.3s ease;
}

#work {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

#work .work-slider {
	width: 40%;
}

#work .work-message {
	width: 40%;
	padding: 50px;
}

#work .title {
	color: #0073DA;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

#work .description1 {
	color: #000;
	font-size: 16px;
	font-weight: bold;
}

#work .description2 {
	font-size: 12px;
	color: #000;
}


.youtube-slider {
	position: relative;
	width: 80%;
	margin: auto;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #f9f9f9;
	justify-content: center;
	gap: 4rem;
}

.youtube-slider .youtube-carousel {
	width: 90%;
	margin: 0px auto;
}

.youtube-slider .slick-slide {
	margin: 10px;
}

.youtube-slider .slick-slide img {
	width: 100%;
	border: 2px solid #fff;
}

.youtube-slider .slick-dots li button:before {
	font-size: 20px;
	color: white;
}

.youtube-slider .slick-prev,
.youtube-slider .slick-next {
	display: flex !important;
	align-items: center !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.youtube-slider .slick-prev {
	left: 0px !important;
	width: 50px !important;
}

.youtube-slider .slick-next {
	right: 0px !important;
	width: 50px !important;
}

.youtube-slider .slick-prev img,
.youtube-slider .slick-next img {
	width: 50px;
	height: auto;
	display: block;
}

.youtube-slider .slick-prev:before,
.youtube-slider .slick-next:before {
	display: none;
}


.work-slider {
	position: relative;
	width: 60%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.work-slider .work-carousel {
	width: 80%;
	margin: 0px auto;
}

.work-slider .slick-slide {
	margin: 10px;
}

.work-slider .slick-slide img {
	width: 100%;
	border: 2px solid #fff;
}

.work-slider .slick-dots li button:before {
	font-size: 20px;
	color: white;
}

.work-slider .slick-prev,
.work-slider .slick-next {
	display: flex !important;
	align-items: center !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.work-slider .slick-prev {
	left: 0px !important;
	width: 50px !important;
}

.work-slider .slick-next {
	right: 0px !important;
	width: 50px !important;
}

.work-slider .slick-prev img,
.work-slider .slick-next img {
	width: 50px;
	height: auto;
	display: block;
}

.work-slider .slick-prev:before,
.work-slider .slick-next:before {
	display: none;
}

.work-carousel img {
	border-radius: 20px;
}



@media screen and (max-width: 768px) {
	header {
		padding: 10px 20px;
		color: #fff;
		position: absolute;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.nav {
		position: fixed;
		top: 0%;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 15px;
		background: #000000;
		transform: translateX(100%);
		transition: transform 0.5s;
		z-index: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 2rem;
	}

	.footer-div {
		width: 100%;
		justify-self: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-logo-text {
		font-size: 4vw;
		padding-top: 10px !important;
		color: #000;
	}

	.footer-tel {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 0rem;
		color: #000;
		margin: 20px 0px !important;
		padding: 15px 0px !important;
		font-size: 4vw;
		border-top: solid 2px #ccc;
		border-bottom: solid 2px #ccc;
		justify-content: center;
		align-items: center;
	}

	.footer-link {
		width: 80%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 1rem;
	}

	#message .title {
		font-size: 9vw;
		font-weight: bold;
		color: #000;
		line-height: 1;
	}

	#message .description1 {
		font-size: 3vw;
		color: #000;
		text-align: center;
		margin: 0;
	}

	#message .description2 {
		font-size: 5vw;
		font-weight: bold;
		color: red;
		text-align: center;
		line-height: 1.5;
	}

	#about .bg-text {
		position: absolute;
		top: 0%;
		right: -1%;
		color: #E9E6E5;
		font-size: 20vw;
		font-weight: bold;
		opacity: 0.5;
		line-height: 1;
		margin: 0;
	}

	#about .about-message {
		padding: 50px 50px 50px 50px;
	}

	#about .title {
		color: red;
		font-size: 9vw;
		font-weight: bold;
		line-height: 1;
		margin: 0;
	}

	#work {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
	}

	#work .work-slider {
		width: 80%;
	}

	#work .work-message {
		width: 100%;
		padding: 50px;
	}

	#people {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#people .bg-text {
		position: absolute;
		top: 0%;
		right: 0%;
		color: #E9E6E5;
		font-size: 15.8vw;
		font-weight: bold;
		opacity: 0.5;
		line-height: 1;
		margin: 0;
	}

	#people .people-message {
		padding: 50px;
		width: 100%;
	}

	#people .people-slider {
		margin-top: 0px;
		display: flex;
		flex-direction: column;
		gap: 1rem;
		width: 80%;
	}

	#badge .badge-wrapper {
		padding: 50px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 1rem;
	}

	#badge .badge-item {
		width: 100%;
		padding: 40px;
		background: #fff;
		border-radius: 15px;
	}

	#badge .title {
		color: #0073DA;
		font-size: 8vw;
		font-weight: bold;
		line-height: 1;
		margin: 0;
	}

	#question .question-wrapper {
		padding: 0px;
		display: flex;
		justify-content: center;
		gap: 0rem;
	}

	#question .question-message {
		position: relative;
		width: 80%;
		padding: 60px 0px 40px 0px;
		background: #0073DA;
		border-radius: 15px;
		text-align: center;
	}

	#question .title {
		color: #fff;
		font-size: 10vw;
		font-weight: bold;
		line-height: 1;
		margin: 0;
	}

	#question .question-wrapper .bg-text {
		position: absolute;
		top: 60%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #E9E6E5;
		font-size: 60vw;
		font-weight: bold;
		opacity: 0.5;
		line-height: 1;
		margin: 0;
		text-align: center;
	}

	#news .news-message {
		width: 80%;
		text-align: center;
	}

	#news .news-wrapper {
		display: flex;
		flex-direction: column;
		gap: 3rem;
	}

	#news .news-item .desc {
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		color: #000;
		margin: 0;
		padding-top: 10px;
		text-align: left;
	}

	#other-contents .other-contents-message {
		width: 80%;
		text-align: center;
	}

	#other-contents .btn-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 2rem;
	}

	#other-contents .btn-wrapper a {
		color: #000;
		background-color: #fff;
		border: solid 1px #fff;
		text-decoration: none;
		padding: 20px;
		line-height: 1;
		width: 100%;
		border-radius: 8px;
		font-size: 15px;
	}

	#reversal {
		position: relative;
		display: flex;
		flex-direction: row;
		justify-content: center;
		padding: 100px 0px 100px 0px;
	}

	#reversal .reversal-message {
		width: 80%;
		text-align: center;
	}

	#reversal .title {
		color: red;
		font-size: 8vw;
		font-weight: bold;
		line-height: 1;
		margin: 0;
	}

	#reversal .title span {
		color: red;
		font-size: 15vw;
		font-weight: bold;
		line-height: 1;
		margin: 0;
	}

	#reversal .description1 {
		color: #000;
		line-height: 2.5;
		margin-top: 40px;
		font-size: 3vw;
	}

	#reversal .description2 {
		color: red;
		font-weight: bold;
		font-size: 5.5vw;
		line-height: 1.5;
		margin-bottom: 80px;
	}

	#reversal a {
		color: #fff;
		background-color: red;
		border: solid 1px red;
		text-decoration: none;
		padding: 20px 100px;
		line-height: 1;
		border-radius: 8px;
		font-size: 15px;
	}

	.social-link a {
		margin: 0px 10px;
		filter: brightness(20);
	}

}