/* ======================================
	base
====================================== */
@media screen and (min-width: 1400px) {
	.widepc {
		display: block !important
	}
	.pc {
		display: none !important
	}
}
@media screen and (max-width: 1399px) {
	.widepc {
		display: none !important
	}
}
@media screen and (max-width: 1399px) and (min-width: 768px) {
	.pc {
		display: block !important
	}
}
@media screen and (min-width: 768px) {
	.sp {
		display: none !important
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important
	}
	.sp {
		display: block !important
	}
}
@media all and (max-width: 1079px) and (min-width: 768px) {
	.tabnone {
		display: none !important
	}
}
a {
	text-decoration: none
}
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", "DM Sans",sans-serif;
}
html, body {
	overflow-x: clip;
	max-width: 100%;
}
body {
  position: relative;
  margin-bottom: 0;
  color: #000;
	font-size: 15px;
	line-height: 2em;
	font-weight: 400;
	background-color: #fff;
}
img {
  border-style: none;
  vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
.content {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
@media (min-width: 1080px) {
	.flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
}
/* ======================================
	animation
====================================== */
/* zoomout img */
.zoomout {
  overflow: hidden;
}
.zoomout img {
  transition: 2s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.zoomout.active img {
  transform: none;
  opacity: 1;
}
/* mask-wrap */
.mask-wrap {
  display: table;
  overflow: hidden;
}
.mask-wrap .mask {
  display: table;
  position: relative;
  margin-bottom: .25em;
  left: -100%;
  overflow: hidden;
}
.mask-wrap .mask-bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #efefef;
}
/* ======================================
	common
====================================== */
.head h2 {
	font-size: 60px;
	font-weight: 900;
	line-height: 1;
	font-family: 'DM Sans';
	font-style: italic;
	color: #fff;
	margin: 0 0 15px;
}
.head p {
	font-size: 20px;
	font-weight: 700;
	line-height: 2em;
	color: #fff;
	left: 0;
}
@media all and (max-width: 767px) {
	.head h2 {
		font-size: 35px;
		margin: 0 0 0 2px;
	}
	.head p {
		font-size: 15px;
	}
}
/* ======================================
	pageTop
====================================== */
#page-top {
  bottom: 0;
  position: fixed;
  right: 0;
}
#page-top a {

}
/* ======================================
	header
====================================== */
header {
	position: relative;
	background: #fff;
	width: 100%;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}
header>.content {
	max-width: 100%;
}
@media screen and (min-width: 768px) {
	header>.content {
		padding: 33px 30px;
	}
	header>.content #header-logo img {
		width: 421px;
	}
}
@media screen and (max-width: 767px) {
	header>.content {
		padding: 9px 14px;
	}
	header>.content #header-logo img {
		width: 259px;
	}
}
/* ======================================
	footer
====================================== */
footer {
	padding-top: 52px;
	background-color: #F5F3F7;
}
footer .content {
	margin: 0 auto 63px;
	max-width: 90%;
	line-height: 1.8666;
	font-size: 15px;
}
footer .text1 {
	margin-bottom: 18px;
	font-size: 23px;
	font-weight: 600;
	color: #0099B3;
}
footer .copyright {
	padding: 18px 0 17px;
	color: #ffffff;
	font-size: 10px;
	font-style: normal;
	background-color: #0099B3;
	text-align: center;
	letter-spacing: 0.08em;
}
@media all and (max-width: 959px) {
	footer {
		padding-top: 32px;
	}
	footer .content {
		margin: 0 32px 25px;
		max-width: inherit;
	}
	footer p {
		font-size: 10px;
		line-height: 2;
	}
	footer .text1 {
		margin-bottom: 12px;
		font-size: 15px;
		line-height: 1.6666;
		letter-spacing: 0;
	}
	footer .copyright {
		padding: 7px 0 8px;
		font-size: 10px;
		letter-spacing: 0.08em;
	}
}
