@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--main: #00a6df;
	--accent: #ffba00;
	--red: #e51616;
	--text: #ffffff;
	--bg: #000000;
	--border: #008fc2;
	--inner: 1100px;
	--font: "Arial", "Helvetica Neue", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

html {
	font-size: 62.5%;
}

body {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-text-size-adjust: 100%;
	min-height: 100vh;
	padding-bottom: 70px;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
	src: url("../webfonts/NotoSansJP/NotoSansJP-Regular.otf") format("opentype");
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	src: url("../webfonts/NotoSansJP/NotoSansJP-Bold.otf") format("opentype");
	font-display: swap;
}

@font-face {
	font-family: "Bebas Neue";
	font-style: normal;
	font-weight: 400;
	src: url("../webfonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Aoboshi One";
	font-style: normal;
	font-weight: 400;
	src: url("../webfonts/Aoboshi_One/AoboshiOne-Regular.ttf") format("truetype");
	font-display: swap;
}

a {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	opacity: 0.5;
}

ul,
ol {
	list-style: none;
}

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

address {
	font-style: normal;
	text-decoration: none;
}

.image img {
	width: 100%;
}

.inner {
	max-width: 1024px;
	margin: 0 auto;
}

main {
	flex: 1;
	padding-top: 145px;
	/* padding-bottom: 70px; */
}

.is_home main {
	padding-bottom: 70px;
}

.txt {
	margin: 0 auto;
}

@media screen and (max-width: 1024px) {
	.inner {
		max-width: 900px;
		padding: 0 20px;
	}

	main {
		padding-top: 90px;
	}
}

@media screen and (max-width: 960px) {
	body {
		font-size: 14px;
	}
}

@media screen and (max-width: 560px) {
	body {
		padding-bottom: 0;
	}
}

.row {
	display: flex;
}

.buttons {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.sec01 .buttons a {
	width: 300px;
}

.sec01 .buttons a img {
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.sec01 .buttons a {
		width: 240px;
	}
}

@media screen and (max-width: 960px) {
	.sec01 .buttons a {
		width: 180px;
	}
}

@media screen and (max-width: 560px) {
	.buttons {
		gap: 10px;
	}

	.buttons a,
	.sec01 .buttons a {
		width: 100%;
	}

	.buttons a img {
		width: 100%;
	}
}

.c-button01 {
	max-width: 200px;
	margin: 0 auto;
}

.c-button01 a {
	font-size: 14px;
	text-align: center;
	line-height: 40px;
	color: #fff;
	background-color: #000;
	margin-top: 64px;
	border: 1px solid #fff;
}

.c-button01 a span {
	display: inline-block;
	padding-right: 20px;
	background-image: url(../images/common/btn-arrow.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 8px auto;
}

@media screen and (max-width: 767px) {
	.c-button01 {
		max-width: 160px;
	}

	.c-button01 a {
		font-size: 12px;
		line-height: 35px;
		margin-top: 30px;
	}

	.c-button01 a span {
		padding-right: 10px;
		background-size: 5px auto;
	}
}

/* レスポンシブ表示、非表示 */
@media screen and (min-width: 1481px) {
	.min1480 {
		display: block;
	}

	.max1480 {
		display: none !important;
	}
}

@media screen and (max-width: 1480px) {
	.min1480 {
		display: none !important;
	}

	.max1480 {
		display: block;
	}
}

@media screen and (min-width: 1025px) {
	.min1024 {
		display: block;
	}

	.max1024 {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.min1024 {
		display: none !important;
	}

	.max1024 {
		display: block;
	}
}

@media screen and (min-width: 768px) {
	.min767 {
		display: block;
	}

	.max767 {
		display: none !important;
	}
}

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

	.max767 {
		display: block;
	}
}

@media screen and (min-width: 561px) {
	.min560 {
		display: block;
	}

	.max560 {
		display: none !important;
	}
}

@media screen and (max-width: 560px) {
	.min560 {
		display: none !important;
	}

	.max560 {
		display: block;
	}
}