@charset "utf-8";

main {
	overflow-x: hidden;
}

body::-webkit-scrollbar {
	width: 5px;
}

body::-webkit-scrollbar-track {
	background-color: #838383;
}

body::-webkit-scrollbar-thumb {
	background-color: #282828;
}

.news_scroll::-webkit-scrollbar {
	width: 5px;
}

.news_scroll::-webkit-scrollbar-track {
	background-color: #D9D9D9;
}

.news_scroll::-webkit-scrollbar-thumb {
	background-color: #FFCC33;
}

body {
	font-family: 'YakuHanJP', 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.7;
	margin: 0;
	padding: 0;
	color: #282828;
	background-color: #ffcc33;
	font-size: clamp(14px, 13px + 0.203vw, 16px);
}

.wrapper {
	max-width: 1380px;
	margin: auto;
	width: 100%;
	padding: 40px;
	position: relative;
	z-index: 1;
}

@keyframes blink-animation {
	0% {
		opacity: 0.6;
	}

	50% {
		opacity: 0.75;
	}

	100% {
		opacity: 0.6;
	}
}

.link-button.gray:hover:hover {
	cursor: default;
	animation: none;
}

.flex_sb {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex_cn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.fadein-fast {
	opacity: 0;
	transform: translate(0, 0);
	transition: all 0.3s;

	&.fadein-bottom {
		transform: translate(0, 30px);
	}

	&.fadein-left {
		transform: translate(-30px, 0);
	}

	&.fadein-right {
		transform: translate(30px, 0);
	}

	&.scrollin {
		opacity: 1 !important;
		transform: translate(0, 0) !important;
	}
}

.fadein {
	opacity: 0;
	transform: translate(0, 0);
	transition: all 0.5s;

	&.fadein-left {
		transform: translate(-30px, 0);
	}

	&.fadein-right {
		transform: translate(30px, 0);
	}

	&.fadein-up {
		transform: translate(0, -30px);
	}

	&.fadein-bottom {
		transform: translate(0, 30px);
	}

	&.scrollin {
		opacity: 1 !important;
		transform: translate(0, 0) !important;
	}
}

.blur {
	transition: all 1.1s;
	filter: blur(10px);
	opacity: 0;

	&.scrollin {
		filter: blur(0);
		opacity: 1;
	}
}

a {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}

.font_s {
	font-size: 13px;
}

/*----- clearfix -----*/
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
}

/*----- responsive -----*/
.respd {
	max-width: 100%;
	height: auto;
	width
	/***/
	: auto;
}

.show_1220 {
	display: none;
}

.show_960 {
	display: none;
}

.show_768 {
	display: none;
}

.show_640 {
	display: none;
}

.show_540 {
	display: none;
}

.show_480 {
	display: none;
}


@media only screen and (max-width: 1220px) {
	.show_1220 {
		display: block;
	}

	.hide_1220 {
		display: none;
	}
}

@media only screen and (max-width: 960px) {
	.show_960 {
		display: block;
	}

	.hide_960 {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	.show_768 {
		display: block;
	}

	.hide_768 {
		display: none;
	}

	.link-button {
		background-size: 19px;
	}
}

@media only screen and (max-width: 640px) {
	.show_640 {
		display: block;
	}

	.hide_640 {
		display: none;
	}
}

@media only screen and (max-width: 540px) {
	.show_540 {
		display: block;
	}

	.hide_540 {
		display: none;
	}
}

@media only screen and (max-width: 480px) {
	.show_480 {
		display: block;
	}

	.hide_480 {
		display: none;
	}

	.link-button {
		font-size: 16px;
	}
}

/*///////////////////////////////////////////////////////////*/
/*///////////////////////共通ブロック設計//////////////////////*/
/*///////////////////////////////////////////////////////////*/

.wrapper {
	width: 100%;
	max-width: 1400px;
	margin: auto;
	text-align: left;
	padding: 0 40px;
}

.float_l {
	float: left;
}

.float_r {
	float: right;
}

::selection {
	background: #72e2d2;
}

/* Firefox */
::-moz-selection {
	background: #72e2d2;
}

.fa-brands,
.fa-solid {
	font-size: 1em;
}

.fa-twitter {
	color: #fff;
}

@media only screen and (max-width: 768px) {
	.wrapper {
		padding: 0 20px;
	}
}

@media only screen and (max-width: 480px) {
	.wrapper {
		padding: 0 15px;
	}
}

.iceland-regular {
	font-family: "Iceland", sans-serif;
	font-weight: 400;
	font-style: normal;
}