@charset "utf-8";
/* CSS Document */

*,
*::after,
*::before {
	box-sizing: border-box;
	padding: 0;
 	margin: 0;
}
html, body {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 100%;
	max-width: 1920px;
	min-width: 750px;
	font-family: Arial, Helvetica, "sans-serif", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	scroll-behavior: smooth;
}
body{
    -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: inherit;
	transition: 0.1s ease-in-out;
}
@font-face {
	src: url("../fonts/AcuminVariableConcept.otf") format("opentype");
	font-family: Acumin Variable Concept;
}
.wrap {
	width: 95%;
	max-width: 1300px;
	margin: auto;
}
.flex {
	display: flex;
}
.flex-between {
	justify-content: space-between;
}
.flex-align {
	align-items: center;
}
.flex-center {
	justify-content: center;
}


/* ---------- ヘッダー ---------- */
header {
	width: 100%;
	box-shadow: #333 0 0 10px;
	position: relative;
	z-index: 100;
}
header .wrap {
	height: 140px;
	width: 100%;
	max-width: 1300px;
	margin: auto;
	justify-content: space-between;
}

/* ---------- ロゴ ---------- */
.logo {
	width: 380px;
	margin-left: 20px;
}
.logo:hover {
	opacity: 0.7;
}
.logo h1 {
	font-size: 0.75rem;
}
.logo h2 {
	width: 280px;
	padding: 10px 0 5px 0;
}
.logo h3 {
	font-size: 1.25rem;
	font-weight: normal;
}

/* ---------- 情報・電話番号 ---------- */
header .terms {
	flex-direction: column;
	align-items: center;
	font-size: 0.9rem;
}
header .mannaka .align hr {
	height: 50px;
	margin: 0 18px 5px 20px;
}
.info p {
	font-size: 0.9rem;
	text-align: center;
}
.info .tel:hover {
	opacity: 0.7;
}

/* ---------- お問合せ ---------- */
.contact {
	width: 140px;
	height: 140px;
	background: #000c8b;
	color: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: bold;
	font-size: 1.1rem;
	line-height: 2.5ex;
}
.contact:hover {
	background: #0075ff;
}

/* ---------- お電話 ---------- */
header .denwa {
	display: none;
}

@media screen and (max-width: 1150px){
	.PC {
		display: none;
	}
	header .wrap {
		justify-content: flex-start;
	}
	.logo {
		width: 480px;
		align-items: center;
	}
	.logo h1 {
		font-size: 1rem;
		padding-left: 10px;
	}
	.logo h2 {
		width: 402px;
	}
	header .contact{
		display: none;
	}
	header .denwa {
		width: 100px;
		height: 100px;
		background: #5b80eb;
		color: #FFF;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-weight: bold;
		font-size: 1.1rem;
		line-height: 2.5ex;
		margin-left: 25px;
	}
	header .denwa:hover {
		background: #000c8b;
	}
}


/* ---------- ナビゲーション ---------- */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
	display: none;
}
.navbar {
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu-items hr {
	height: 30px;
	margin: 0;
}
.menu-items a {
	font-weight: bold;
	font-size: 1.1rem;
	padding: 5px 13px;
}
.menu-items a:hover {
	color: #5b80eb;
}

@media (max-width: 1150px) {
	.sticky {
		width: 100%;
		height: 0;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 1000;
	}
	.navbar input[type="checkbox"],
 	.navbar .hamburger-lines {
		display: block;
	}
	.navbar {
		width: 100%;
		height: 0;
		display: block;
		position: relative;
	}
	.navbar input[type="checkbox"] {
		position: absolute;
		display: block;
		cursor: pointer;
		height: 75px;
		width: 75px;
		top: 35px;
		right: 20px;
		z-index: 5;
		opacity: 0;
	}
	.navbar .hamburger-lines {
		height: 50px;
		width: 75px;
		position: absolute;
		top: 45px;
		right: 20px;
		z-index: 2;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.navbar .hamburger-lines .line {
		display: block;
		height: 7px;
		width: 100%;
		border-radius: 10px;
		background: #000c8b;
	}
	.navbar .hamburger-lines .line1 {
		transform-origin: 0% 0%;
		transition: transform 0.4s ease-in-out;
	}
	.navbar .hamburger-lines .line2 {
    	transition: transform 0.2s ease-in-out;
	}
	.navbar .hamburger-lines .line3 {
		transform-origin: 0% 100%;
		transition: transform 0.4s ease-in-out;
	}
	.navbar .menu-items {
		display: block;
		padding: 120px 0 80px 0;
		background: #FFF;
		box-shadow: #000 0 0 20px;
		transform: translateY(-150%);
		transition: transform 0.5s ease-in-out;
	}
	.navbar .menu-items hr {
		display: none;
	}
	.navbar .menu-items a {
		display: block;
		font-size: 3rem;
		max-width: 750px;
		width: 80%;
		padding: 3px 50px;
		margin: 60px auto;
		border-left: #000c8b 15px solid;
	}
	.navbar .menu-items a:hover {
		border-left: #000c8b 35px solid;
	}
	.navbar input[type="checkbox"]:checked ~ .menu-items {
    	transform: translateY(0);
	}
	.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
		transform: rotate(37deg);
	}
	.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    	transform: scaleY(0);
	}
	.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    	transform: rotate(-37deg);
	}
}


/* ---------- トップ画像 ---------- */
.top_img .PC {
	background: url("../images/Top_img.png") center no-repeat;
	height: 745px;
}


/* ---------- バナー ---------- */
.banner {
	display: block;
	margin: 5% auto;
}
.banner:hover {
	opacity: 0.7;
}


/* ---------- 内容設定 ---------- */
.naname {
	text-align: center;
	transform: skewX(-20deg);
}
/* 斜めの40px黒文字 */
h4 {
	font-size: 2.5rem;
	text-align: center;
}
.title_line {
	margin: 70px auto 40px auto;
}
.title_line .line {
	margin: 30px 0 40px 0;
	background: #000;
	height: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.title_line h2 {
	background: #000;
	color: #FFF;
	font-size: 2rem;
	display: inline-block;
	padding: 0 50px;
}
.title_line h3 {
	line-height: 3.5ex;
	font-size: 2.2rem;
	justify-content: center;
}
.title_line h3 mark{
	line-height: 2.5ex;
	background: #0075ff;
	color: #FFF;
}
.title_line h3 b{
	font-size: 4rem;
	color: #000c8b;
}
.title {
	border-bottom: #000 5px solid;
	text-align: left;
	margin: 20px 0 0 0;
}
.title h4 {
	background: #000;
	color: #FFF;
	display: inline-block;
	padding: 5px 20px 0 20px;
}
.hide {
	display: none;
}
.red {
	color: #ff1d25;
}
.smartphone{
	display: none;
}
@media screen and (max-width: 1150px){
	h4 {
		font-size: 1.8rem;
	}
	.title_line h3 {
		flex-wrap: wrap;
	}
	.hide {
		display: block;
	}
	.PC {
		display: none;
	}
	.smartphone {
		display: block;
	}
}


/* ---------- フッター上の青い三角 ---------- */
.footer_img {
	background-image: url("../images/BG_blue_top.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 30% 0 0 0;
}


/* ---------- フッター ---------- */
footer .logo {
	margin: 8% auto 3% auto;
	width: 670px;
}
footer .logo h1 {
	font-size: 1.3rem;
}
footer .logo h2 {
	width: 498px;
	padding: 10px 0 5px 0;
}
footer .logo h3 {
	font-size: 1.875rem;
}
footer .info {
	width: 655px;
	margin: auto;
}
footer .info p {
	font-size: 1.3rem;
	font-weight: bold;
}
footer .contact {
	width: 340px;
	height: 55px;
	flex-direction: row;
	font-size: 1.3rem;
	border-radius: 50px;
	margin: 2% auto;
}
footer .contact img {
	margin-right: 5px;
}
footer hr {
	border: none;
	border-bottom: #b6b6b6 1px solid;
	max-width: 1280px;
	width: 90%;
	margin: 5% auto;
}
footer .flex-wrap {
	max-width: 1300px;
	width: 90%;
	margin: auto;
	flex-wrap: wrap;
}
footer .flex-wrap a {
	width: 250px;
	margin: 0 5px;
	display: block;
}
footer .flex-wrap a:hover img {
	opacity: 0.7;
	transition: 0.1s ease-in-out;
}
footer .flex-wrap a p {
	text-align: center;
	font-size: 1.05rem;
	font-weight: bold;
	margin: 5px 0;
}
footer .copyright {
	background: #dcdcdc;
	text-align: center;
	font-size: clamp(1rem, 0.84rem + 0.34vw, 1.25rem);
	padding: 2% 0;
	margin-top: 8%;
}
@media screen and (max-width: 1150px){
	footer .flex-wrap a {
		width: 215px;
	}
}

/* ---------- 個人情報保護方針 ---------- */
.privacy {
	width: 85%;
	max-width: 900px;
	text-align: justify;
	margin-top: 100px;
	font-size: 1.05rem;
}
.privacy b {
	display: block;
	font-size: 1.3rem;
	margin-bottom: 5px;
}
.privacy p {
	line-height: 3.5ex;
	margin-top: 40px;
}
.privacy ul,
.privacy ol {
	margin: 10px 0 10px 30px;
	line-height: 3.5ex;
}
.privacy ol li {
	margin-top: 10px;
}
@media screen and (max-width: 1150px){
	.privacy {
		font-size: 1.4rem;
	}
	.privacy b {
		font-size: 1.8rem;
	}
}


/* ---------- 携帯　固定バナー ---------- */
.sticky_banner {
	display: none;
}
@media screen and (max-width: 1150px){
	.sticky_banner {
		display: flex;
		background: #000c8b;
		position: sticky;
		bottom: 0;
		width: 100%;
		height: 125px;
		z-index: 10;
	}
	.sticky_banner .wrap {
		width: 95%;
		max-width: 900px;
	}
	.sticky_banner .info p {
		color: #FFF;
		font-size: 1.15rem;
		font-weight: bold;
		padding: 5px 0 0 0;
	}
	.sticky_banner .contact {
		background: rgba(255,255,255,1);
		color: #000c8b;
		width: 140px;
		height: 105px;
		border-radius: 10px;
	}
	.sticky_banner .contact:hover {
		background: rgba(255,255,255,0.7);
	}
	.sticky_banner a:hover {
		transition: 0.2s ease-in-out;
	}
}