@charset "UTF-8";

/*リセットCSS*/
*,
::before,
::after {
	padding: 0px;
	margin: 0px;
	box-sizing: inherit;
}

input,
textarea {
	margin: 0px;
	padding: 0px;
	background: none;
	border: none;
	border-radius: 0px;
}

html {
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.75;
	box-sizing: border-box;
	position: relative;
	background-color: rgb(14, 14, 14);
	text-size-adjust: 100%;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	font-family: Avenir-Light, Futura, "Century Gothic", 游ゴシック, "Yu Gothic", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
	min-width: 320px;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
}

a {
	transition: all 0.2s ease 0s;
	text-decoration: none;
	color: #fff;
	word-break: break-all;
}

img {
	display: block;
	width: 100%;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0px;
	appearance: none;
}

::selection {
	background: #3994b8;
}

* {
	--sb-track-color: #232e33;
	--sb-thumb-color: #495252;
	--sb-size: 10px;

	scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
}

*::-webkit-scrollbar {
	width: var(--sb-size);
}

*::-webkit-scrollbar:horizontal {
	height: var(--sb-size);
}

*::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 10px;
}

/*---------------------------------------------*/
.sp_br {
	display: none;
}

@media screen and (max-width: 599px) {
	.sp_br {
		display: block;
	}
}

/*---------------------------------------------*/
body.no_scroll {
	overflow: hidden
}

*[data-txalign="tx-align0"] {
	text-align: left;
}

*[data-txalign="tx-align1"] {
	text-align: center;
}

*[data-txalign="tx-align2"] {
	text-align: right;
}


/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: #0e0e0e;
	background: linear-gradient(90deg, rgb(43, 192, 201) 0%, rgb(65, 120, 172) 100%);
	text-align: center;
	color: #fff;
}

#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash_logo svg {
	width: auto;
	height: auto;
}

/*=============== SVGアニメーション内の指定 =================*/

#mask path {
	fill-opacity: 0;
	transition: fill-opacity .5s;
	fill: none;
	stroke: #fff;
}

#mask.done path {
	fill: #fff;
	fill-opacity: 1;
	stroke: none;
}

/*----------------------
header
-----------------------*/
header {
	position: fixed;
	top: 0px;
	left: 50%;
	transform: translate(-50%, 0px);
	z-index: 999;
	width: 100%;
	padding: 0px 60px;
	display: flex;
	flex-wrap: wrap;
}

/*　上に上がる動き　*/
header.UpMove .headerWrap {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-100px);
	}
}

/*　下に下がる動き　*/
header.DownMove .headerWrap {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

header .headerWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

header .headerWrap .logo {
	width: 98px;
	height: 40px;
	filter: drop-shadow(0px 0px 10px #0f0f0f33);
	-webkit-filter: drop-shadow(0px 0px 10px #0f0f0f33);
}

header .headerWrap .globalNav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 455px;
	padding: 5px 20px;
	font-size: 30px;
	color: rgb(255, 255, 255);
	font-weight: bold;
	background: linear-gradient(90deg, rgba(43, 192, 201, 0.8) 0%, rgba(65, 120, 172, 0.8) 100%);
	border-radius: 0px 0px 10px 10px;
}

/* アイコンボタン */
header .globalNav .iconMenu {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

header .globalNav .iconMenu li {
	margin-right: 15px;
}

header .globalNav .iconMenu li a {
	color: #fff;
	font-size: 30px;
	display: block;
	width: auto;
	height: auto;
	padding: 0 0.2em;
	position: relative;
}

header .globalNav .iconMenu li a:hover {
	color: #08dbe7;
}

header .globalNav .iconMenu li a.icf-bell.new::after {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 100%;
	background-color: #ffb84e;
	position: absolute;
	top: 10px;
	right: 8px;
}

/* hamburgerボタン */
header .globalNav .humBtn {
	position: relative;
	width: 30px;
	height: 20px;
	margin-left: auto;
}

header .globalNav .humBtn span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transition: all .5s;
}

header .globalNav .humBtn span:nth-of-type(1) {
	top: 0px;
}

header .globalNav .humBtn span:nth-of-type(2) {
	top: 9px;
}

header .globalNav .humBtn span:nth-of-type(3) {
	bottom: 0px;
}

header .globalNav .humBtn.active span:nth-of-type(1) {
	-webkit-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}

header .globalNav .humBtn.active span:nth-of-type(2) {
	opacity: 0;
}

header .globalNav .humBtn.active span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}

header .globalNav .humBtn:hover span {
	background-color: #ffb84e;
}

@media screen and (max-width:980px) {
	header {
		padding: 0px 10px;
	}

	header .headerWrap .globalNav {
		width: 380px;
	}

}

@media screen and (max-width: 599px) {
	header .headerWrap .globalNav {
		flex-direction: column-reverse;
		padding: 15px 20px;
		width: auto;
	}

	header .globalNav .iconMenu {
		display: none;
	}

	header.stop .globalNav .iconMenu {
		display: flex;
		position: absolute;
		bottom: -0.5em;
		right: 0;
		transform: translate(0, 100%);
		width: 100%;
		justify-content: center;
		background-color: rgb(34 116 193 / 38%);
		border-radius: 10px;
	}

	header .globalNav .iconMenu li {
		margin: auto;
	}

	header .globalNav .iconMenu li a {
		font-size: 10vw;
	}

	header .globalNav .iconMenu li a.icf-bell.new::after {
		top: 0.5em;
		right: 0.3em;
	}
}

/*----------------------
nav
-----------------------*/
nav.gmWrap {
	display: none;
}

nav.gmWrap.active {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	padding: 70px 0;
	position: fixed;
	top: 0;
	left: 0;
	background-image: -moz-linear-gradient(-45deg, #2bc0c9 0%, #4178ac 100%);
	background-image: -webkit-linear-gradient(-45deg, #2bc0c9 0%, #4178ac 100%);
	background-image: -ms-linear-gradient(-45deg, #2bc0c9 0%, #4178ac 100%);
	z-index: 998;
}

nav.gmWrap .globalMnenu {
	width: 100%;
	height: calc(100vh - 130px);
	position: relative;
	overflow-y: auto;
}

nav.gmWrap .globalMnenu a,
nav.gmWrap .globalMnenu span {
	color: #fff;
	display: block;
	padding: 0.4em 1em;
	line-height: 1.2;
}

nav.gmWrap .globalMnenu li>a:hover {
	color: #ffb84e;
}

nav.gmWrap .globalMnenu .upperLayer {
	width: 350px;
	margin-left: auto;
	margin-right: 50%;
}

nav.gmWrap .globalMnenu .upperLayer ul {
	width: 100%;
	position: relative;
}

nav.gmWrap .globalMnenu .upperLayer li {
	width: 100%;
	margin-left: auto;
	position: relative;
}

nav.gmWrap .globalMnenu .upperLayer li a,
nav.gmWrap .globalMnenu .upperLayer li span {
	font-size: 40px;
}

nav.gmWrap .globalMnenu .upperLayer li ul {
	width: 100%;
	display: none;
	border-left: solid 1px #fff;
	height: auto;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	padding-left: 1em;
	padding-top: 1em;
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translate(0, -50%);
}

nav.gmWrap .globalMnenu .upperLayer li ul::before {
	content: "";
	width: 1em;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: -1em;
	transform: translate(0, -50%);
}

nav.gmWrap .globalMnenu .upperLayer li ul.active {
	display: flex;
}

nav.gmWrap .globalMnenu .upperLayer li ul li {
	width: 100%;
	padding-left: 2em;
	position: relative;
}

nav.gmWrap .globalMnenu .upperLayer li ul li::before {
	content: "";
	width: 1em;
	height: 1em;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%) scale(0);
	background-color: #ffb84e;
	transition: transform 0.2s;
}

nav.gmWrap .globalMnenu .upperLayer li ul li:hover::before {
	transform: translate(0, -50%) scale(1);
}

nav.gmWrap .globalMnenu .upperLayer li ul li a {
	font-size: 18px;
	padding: 0.6em 0;
}

nav.gmWrap .globalMnenu .upperLayer li span.ac_btn span {
	display: none;
}

@media screen and (max-width: 599px) {
	nav.gmWrap.active {
		display: block;
		padding: 160px 0 50px;
	}

	nav.gmWrap .globalMnenu .upperLayer {
		width: 100%;
		margin: 0;
	}

	nav.gmWrap .globalMnenu .upperLayer li ul {
		width: calc(100% - 30px);
		display: none;
		position: relative;
		top: 0%;
		left: 0%;
		transform: translate(0, 0);
		margin-left: 30px;
		margin-bottom: 50px;
	}

	nav.gmWrap .globalMnenu .upperLayer li ul::before {
		content: none;
	}

	nav.gmWrap .globalMnenu .upperLayer li span.ac_btn span {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
		transition: transform 0.2s;
	}

	nav.gmWrap .globalMnenu .upperLayer li span.ac_btn.open span {
		transform: rotate(180deg);
	}

	nav.gmWrap .globalMnenu .upperLayer li ul.open {
		display: block;
	}

	nav.gmWrap .globalMnenu .upperLayer li a,
	nav.gmWrap .globalMnenu .upperLayer li span {
		font-size: 35px;
	}
	nav.gmWrap .globalMnenu .upperLayer ul {
		padding: 0 0 40px;
	}
}

/*----------------------
main
-----------------------*/
.main {
	position: relative;
	will-change: transform;
	-webkit-overflow-scrolling: touch;
}

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

@keyframes waveLoop {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: -50% 100%;
	}
}

/*----------------------
newsPanel
-----------------------*/
.newsPanel {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	margin: auto;
	/* display: flex;
	justify-content: space-between;
	align-items: center; */
	padding: 60px 70px;
	border-radius: 20px;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 900;
}

.newsPanel.active {
	display: block;
}

@media not all {
	.newsPanel {
		background-color: rgba(0, 0, 0, 0.9);
	}
}

.newsPanel .newsPanel-close_btn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
}

.newsPanel .newsPanel-close_btn span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transition: all .5s;
}

.newsPanel .newsPanel-close_btn span:nth-of-type(1) {
	top: 0px;
	-webkit-transform: translateY(14px) rotate(-45deg);
	transform: translateY(14px) rotate(-45deg);
}

.newsPanel .newsPanel-close_btn span:nth-of-type(2) {
	bottom: 0px;
	-webkit-transform: translateY(-14px) rotate(45deg);
	transform: translateY(-14px) rotate(45deg);
}

.newsPanel .newsPanel-close_btn:hover span {
	background-color: rgb(43, 192, 201);
	box-shadow: rgb(0, 162, 177) 0px 0px 5px;
}

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

.newsPanel .newsWrap .listWrap {
	width: calc(100% - 250px);
	max-width: 1000px;
}

.newsPanel .newsWrap .listWrap ul,
.newsPanel .newsWrap .listWrap ul li {
	width: 100%;
}

.newsPanel .newsWrap .listWrap ul li a {
	display: block;
	width: 100%;
	font-size: 18px;
	padding: 1em 6em 1em 1em;
	position: relative;
	border-bottom: 1px solid rgb(122, 135, 146);
	color: #fff;
}

.newsPanel .newsWrap .listWrap ul li a:hover,
.newsPanel .newsWrap .listWrap ul li a:hover span {
	color: rgb(43, 192, 201);
}

.newsPanel .newsWrap .listWrap ul li a:hover {
	border-bottom: 1px solid rgb(43, 192, 201);
}

.newsPanel .newsWrap .listWrap ul li a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 2.5em;
	width: 2.5em;
	height: 5px;
	border-top: none;
	border-left: none;
	border-image: initial;
	border-right: 2px solid rgb(122, 135, 146);
	border-bottom: 1px solid rgb(122, 135, 146);
	transform: skew(45deg);
	transform-origin: left center;
	transition: all 0.2s ease 0s;
}

.newsPanel .newsWrap .listWrap ul li a:hover::after {
	right: 1.5em;
	width: 3em;
	border-right: 2px solid rgb(43, 192, 201);
	border-bottom: 1px solid rgb(43, 192, 201);
}

.newsPanel .newsWrap .listWrap ul li a span {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	padding-right: 1.5em;
}

.newsPanel .newsWrap a.btn {
	display: block;
	width: 50%;
	margin: 50px auto 0;
	background: none;
	border: solid 1px #fff;
}

@media screen and (max-width: 980px) {
	.newsPanel .newsWrap {
		display: block;
	}

	.newsPanel h2 {
		width: 100%;
	}

	.newsPanel .newsWrap .listWrap {
		width: 100%;
	}

	.newsPanel .newsWrap .listWrap ul li a {
		padding: 1em 4em 1em 1em;
	}

	.newsPanel .newsWrap .listWrap ul li a span {
		display: block;
	}

	.newsPanel .newsWrap .listWrap ul li a::after {
		right: 1.8em;
		width: 1.6em;
	}

	.newsPanel .newsWrap .listWrap ul li a:hover::after {
		right: 0.8em;
		width: 2em;
	}

	.newsPanel .newsWrap .listWrap ul li a span {
		display: inline-block;
		color: rgb(122, 135, 146);
		font-weight: bold;
		font-size: 16px;
		padding-right: 1.5em;
	}

	.newsPanel .newsWrap .btn {
		width: 90%;
	}
}

@media screen and (max-width: 599px) {
	.newsPanel {
		width: 95%;
		padding: 20px;
	}

	.newsPanel .newsWrap .listWrap ul li a {
		font-size: 16px;
		padding: 0.8em 4em 0.8em 0.5em;
	}

	.newsPanel .newsWrap .listWrap ul li a span {
		display: block;
	}

	.newsPanel .newsWrap a.btn {
		width: 100%;
		margin: 30px auto 0;
	}
}

/*----------------------
パンくず
-----------------------*/
nav.pankz {
	display: block;
	width: 72.18vw;
	margin: 0 auto 20px;
	z-index: 1;
}

.pankz ol {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}

.pankz li {
	position: relative;
	margin-right: 20px;
	margin-bottom: 4px;
}

.pankz li.icf-arrow_next::before {
	position: absolute;
	top: 50%;
	right: -16px;
	color: #cacdd1;
	font-size: 14px;
	transform: translate(0, -50%);
}

.pankz li.icf-arrow_next:nth-last-of-type(1)::before {
	content: none;
}

.pankz a {
	display: block;
	padding: 0.4em 1em;
	border-radius: 5rem;
	overflow: hidden;
	font-size: 12px;
	background-color: rgba(0, 0, 0, 0.7);
}

.pankz a:hover {
	color: #2bc0c9;
}

.pankz li.icf-arrow_next:nth-last-of-type(1) a {
	pointer-events: none;
}

@media screen and (max-width: 599px) {
	nav.pankz {
		width: calc(100% - 20px);
		margin: 0 auto 20px;
	}

	.pankz a {
		padding: 0.2em 1em;
	}
}

/*----------------------
scrolldown1
-----------------------*/
.scrolldown1 {
	filter: drop-shadow(rgb(0, 234, 255) 0px 0px 20px) drop-shadow(rgb(0, 234, 255) 0px 0px 20px) drop-shadow(rgb(0, 234, 255) 0px 0px 40px);
	position: absolute;
	left: 50%;
	bottom: 20px;
	height: 50px;
	z-index: 1;
}

.scrolldown1 span {
	position: absolute;
	left: -15px;
	top: -15px;
	color: rgb(238, 238, 238);
	font-size: 14px;
	letter-spacing: 0.05em;
	display: block;
	width: 3em;
}

.scrolldown1::after {
	content: "";
	position: absolute;
	top: 0px;
	width: 1px;
	height: 30px;
	background: rgb(238, 238, 238);
	animation: 1.4s ease-in-out 0s infinite normal none running pathmove;
	opacity: 0;
}

@keyframes pathmove {
	0% {
		height: 0px;
		top: 0px;
		opacity: 0;
	}

	30% {
		height: 30px;
		opacity: 1;
	}

	100% {
		height: 0px;
		top: 50px;
		opacity: 0;
	}
}

/*----------------------
main contents
-----------------------*/
section {
	width: 100%;
	position: relative;
}

.main .maxW {
	width: 100%;
	padding-left: 4.39vw;
	padding-right: 4.39vw;
	position: relative;
}

h2 .en {
	font-size: 70px;
	color: transparent;
	-webkit-text-stroke: 1px rgb(255, 255, 255);
	line-height: 1;
	word-break: break-word;
}

h2 .jp {
	font-size: 28px;
	font-weight: bold;
	color: rgb(255, 255, 255);
}

@media not all {
	h2 .en {
		color: rgb(255, 255, 255);
	}
}

@media screen and (max-width: 599px) {
	h2 .en {
		font-size: 50px;
	}

	h2 .jp {
		font-size: 24px;
	}
}

/*----------------------
main a.btn
-----------------------*/
a.btn {
	display: inline-block;
	width: auto;
	color: rgb(255, 255, 255);
	font-size: 16px;
	position: relative;
	z-index: 1;
	background: linear-gradient(90deg, rgb(65, 120, 172) 0%, rgb(43, 192, 201) 50%, rgb(65, 120, 172) 100%) 100% 0px / 200% 100%;
	box-shadow: rgba(0, 0, 0, 0.4) 10px 10px 30px;
}

a.btn:hover {
	background-position: 0px 0px;
}

a.btn p {
	display: inline-block;
	position: relative;
	padding: 1em 7em 1em 3em;
}

a.btn p::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 3em;
	width: 3em;
	height: 5px;
	border-top: none;
	border-left: none;
	border-image: initial;
	border-right: 2px solid rgb(255, 255, 255);
	border-bottom: 1px solid rgb(255, 255, 255);
	transform: skew(45deg);
	transition: all 0.2s ease 0s;
}

a.btn:hover p::after {
	right: 1.5em;
	width: 4em;
}

/*----------------------
footer
-----------------------*/
footer {
	color: rgb(255, 255, 255);
	padding: 60px 0px 40px;
	clip-path: polygon(0% 5%, 100% 0px, 100% 100%, 0px 100%);
	-webkit-clip-path: polygon(0% 5%, 100% 0px, 100% 100%, 0px 100%);
	background-image: url(../img/footer_bg.png), linear-gradient(110deg, #0e0e0e 20%, #4aceff 100%);
	background-image: url(../img/footer_bg.png), -webkit-linear-gradient(110deg, #0e0e0e 20%, #4aceff 100%);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-blend-mode: color-dodge;
}

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

footer .foot_contents .foot_logo {
	width: 285px;
	padding: 0px 40px;
	display: flex;
	align-items: center;
}

footer .foot_contents .foot_logo a {
	display: block;
}

footer .foot_nav {
	padding: 0px 40px;
	border-right: 1px solid rgb(255, 255, 255);
	border-left: 1px solid rgb(255, 255, 255);
	width: 400px;
}

footer .foot_nav>ul {
	display: flex;
	flex-flow: column wrap;
	height: 440px;
	width: auto;
}

footer .foot_nav>ul>li {
	margin-bottom: 20px;
}

footer .foot_nav>ul>li:last-child {
	margin-bottom: 0px;
}

footer .foot_nav li a,
footer .foot_nav li span {
	display: block;
	color: rgb(255, 255, 255);
	width: 100%;
	word-break: break-all;
	max-width: 120px;
	font-weight: bold;
}

footer .foot_nav li a:hover {
	color: rgb(43, 192, 201);
	text-shadow: rgb(0, 162, 177) 0px 0px 5px;
	text-decoration: underline;
}

footer .foot_nav li ul {
	padding-left: 1em;
}

footer .foot_nav li ul li {
	margin-bottom: 5px;
}

footer .foot_nav li ul li a {
	font-weight: normal;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

footer .foot_contact {
	padding: 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

footer .foot_contact .tit {
	font-weight: bold;
}

footer .foot_contact .tit span {
	display: block;
	font-weight: normal;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

footer .foot_contact .contactus {
	padding: 20px 2vw;
	margin: auto;
}

footer .foot_contact .contactus .tit {
	margin-bottom: 40px;
}

footer .foot_contact .followus {
	border-top: 1px solid rgb(255, 255, 255);
	border-bottom: 1px solid rgb(255, 255, 255);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1vw 2vw;
}

footer .foot_contact .followus .tit {
	margin-right: auto;
}

footer .foot_contact .followus a {
	display: block;
	margin-left: 0.5em;
	font-size: 35px;
	color: #fff;
	line-height: 1;
}

footer .foot_contact .followus a:hover {
	color: rgb(43, 192, 201);
	text-shadow: rgb(0, 162, 177) 0px 0px 5px;
}

footer .foot_contact .copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin: 10px auto;
}

@media screen and (max-width: 599px) {
	footer {
		clip-path: polygon(0% 2%, 100% 0px, 100% 100%, 0px 100%);
		-webkit-clip-path: polygon(0% 2%, 100% 0px, 100% 100%, 0px 100%);
		padding: 60px 20px 0px;
	}

	footer .foot_contents .foot_logo {
		width: 140px;
		margin: 0 auto 30px 0;
		padding: 0;
	}

	footer .foot_nav {
		width: 100%;
		padding: 0px;
		border-left:
			none;
		border-right: none;
		margin-bottom: 20px;
	}

	footer .foot_contact {
		width: 100%;
		padding: 0;
		border-top: solid 1px #fff;
	}

	footer .foot_contact .contactus {
		width: 100%;
	}

	footer .foot_contact .contactus .tit {
		margin-bottom: 20px;
	}

	footer .foot_contact .contactus a.btn {
		display: block;
		width: 100%;
	}

	footer .foot_contact .followus {
		padding: 15px 2vw;
		width: calc(100% - 100px);
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	footer .foot_contact .followus .tit {
		width: 100%;
	}

	footer .foot_contact .followus a {
		margin: 0 0.5em 0 0;
	}
}

/*----------------------
ページ上部に戻るボタン
-----------------------*/
.page_top {
	width: 60px;
	height: 60px;
	position: fixed;
	right: 30px;
	bottom: -70px;
	border-radius: 10px;
	background: linear-gradient(135deg, #00f2ff 0%, #004a90 100%);
	box-shadow: rgb(0 0 0 / 40%) 10px 10px 30px;
	z-index: 997;
	clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
	-webkit-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
	transition: all 0.2s;
}

.page_top.icf::before {
	color: #fff;
	font-size: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.page_top:hover {
	transform: translate(0, -10px);
}

@media screen and (max-width: 599px) {
	.page_top {
		right: 10px;
	}
}


/* marker */
.mark1 .yellow {
	background: linear-gradient(transparent 20%, #ffeb3b4a 0%);
	padding: 0 1px;
	margin: 0 1px;
}

/* 太字 */
.mark2 .bold {
	font-weight: bold;
}