@charset "utf-8";
/* CSS Document */
*{
  box-sizing:border-box;
}

/* CSSのリセット */
html, body,
ul, ol, li,
h1, h2, h3, h4, h5, h6, p, div{
  margin: 0;
  padding: 0;
}

li{
	list-style: none;
}

a{
	text-decoration: none;
}

/* リンクのスクロール */
html{
  scroll-behavior: smooth; /* スムーススクロール */
}

/* フォントと背景 */
body{
  font-family: "Noto Sans JP", system-ui, sans-serif;
	color: #484848;
	background-color: #F0EFF0; /* 背景色 */
}





/* PC・SPの表示・非表示*/
.sp{
	display: none;
}

.pc{
	display: block;
}


#main_content{
	min-width:1440px;
}

/* コンテンツ幅 */
.contents01{
	max-width: 980px;
	width: 100%;
	margin:0 auto;
}

.contents02{
	max-width: 1200px;
	width: 100%;
	margin:0 auto;
}
/* メインビジュアル */
.main{
	width: 100%;
	height: auto;
	background-color: #f4f7f9;
	background-image: url("../img/common/main_title.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 60px 0px;
}

.main_title{
	color: #ffffff;
	font-size: 38px;
}

/* パンくず */
.breadcrumb {
	margin: 0;
	padding: 0;
	list-style: none;
	padding-top: 15px;
}

.breadcrumb li {
	display: inline;/*横に並ぶように*/
	list-style: none;
	font-weight: 0;/*太字*/
	font-size: 16px;
}

.breadcrumb li:after {/* >を表示*/
	content: '>';
	padding: 0 0.9em;
	color: #ffffff;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #ffffff;/*色*/
}

.breadcrumb li a:hover {
	text-decoration: underline;
}


/* コンテンツ幅 */
.footer_contents{
	max-width: 1280px;
	width: 100%;
	margin:0 auto;
	padding: 0px 8vw;
}





/* ヘッダー */
header{
	width: 100%;
	height: auto;
	padding-left: 20px;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
}

.logo_header{
	padding: 15px 0px 15px 20px;
}

.logo_header img{
	max-width: 100%;
	height: auto;
}

.logo_pc:hover{
	opacity: 0.7;
}

.logo_pc{
	display: block;
}

.logo_sp{
	display: none;
}

.logo_sp:hover{
	opacity: 0.7;
}

.logo_header p{
	font-size: 12px;
	margin-bottom: 5px;
}

.header_menu{
	display: flex;
	margin-right: 20px;
	
}
.header_menu a{
	color: #002335;
}

.menu_01{
	color: #002335;
}

.menu_02{
	color: #61a2b2;
	font-size: 10px;
}

.header_menu li{
	text-align: center;
	padding: 0px 25px;
}

.header_menu li:hover{
	opacity: 0.7;
}

.header_button_contact:hover{
	opacity: 0.7;
}

.header_menu_01{
	display: flex;
	justify-content: space-between;
	align-items: center;
}





/****** ハンバーガーメニュー ******/
/* ハンバーガーメニューのボタン */
.sp-menu{
	display: none;
}

.p-hamburger {
	display: flex;
	flex-direction: column;
	cursor: pointer;/* カーソルが上に来たらポインターに変身 */
	position: fixed; /* 設置する位置を固定 */
	top: 13px; /* 上からの位置 */
	right: 15px; /* 右からの位置 */
	z-index: 9999; /* 一番手前に表示 */
	width: 50px; /* 横幅 */
	height: 50px; /* 縦幅 */
	background-color: transparent; /* 四角の色 */
	border-radius: 0; /* 角丸 */
	padding-top: 13px;
	padding-bottom: 12px;
	padding-left: 12px;
	border:none;/* 枠線 */
}

.p-hamburger span {
	width: 25px;
	height: 2px;
	background-color: #57448D;/* 三本線の色 */
	margin: 2.5px 0;
	transition: 0.3s;/* 三本線の動く時間 */
}

.p-hamburger span:nth-of-type(1) {
  top: 0px;
}

.p-hamburger span:nth-of-type(2) {
  top: 10px;
}

.p-hamburger span:nth-of-type(3) {
  bottom: 0px;
}

/* 三本線をバツにする */
/* 上段を傾ける */
.p-hamburger.active span:nth-of-type(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

/* 中段は非表示にする */
.p-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

/* 下段を傾ける */
.p-hamburger.active span:nth-of-type(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* 三本線を白にする */
.p-hamburger.active span {
  background-color: #ffffff;
}

/* 不要なinputは非表示にする */
#hamburger-checkbox {
	display: none;
}

/* ハンバーガーメニューの中身 */
/* 表示前のハンバーガーメニューを隠す */
#gnav {
	position: fixed;
	z-index: 999;
	top: 0;
	right: -120%; /* 画面の右側に隠すためのコード */
	width: 100%;
	height: 100vh;
	background-color: #ffffff;
	transition: all 0.6s;
}

/* クラスが付与された後のレイアウト */
#gnav.list_active #gnav_list {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#gnav.list_active {
	right: 0;
}





/* フッター */
footer{
	width: 100%;
	height: auto;
	background-color: #f4f7f9;
	background-image: url("../img/common/footer_back.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 50px;
	padding-bottom: 30px;
}

.footer_logo img{
	max-width: 100%;
	height: auto;
}

.footer_top{
	display: flex;
	justify-content: space-between;
}

.footer_icon_pc{
	display: flex;
}

.footer_icon_sp{
	display: none;
}

.icon_facebook{
	margin-right: 20px;
}

.icon_facebook:hover{
	opacity: 0.7;
}

.icon_facebook img{
	max-width: 100%;
	height: auto;
}

.icon_youtube:hover{
	opacity: 0.7;
}

.icon_youtube img{
	max-width: 100%;
	height: auto;
}

.footer_banner{
	display: flex;
}

.banner_01{
	margin-right: 10px;
}

.banner_01 img{
	max-width: 100%;
	height: auto;
}

.banner_01:hover{
	opacity: 0.7;
}

.banner_02 img{
	max-width: 100%;
	height: auto;
}

.banner_02:hover{
	opacity: 0.7;
}

.footer_policy{
	display: flex;
	color: #ffffff;
}

.footer_01{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.privacypolicy{
	margin-right: 30px;
	color: #ffffff;
}

.privacypolicy:hover{
	opacity: 0.7;
}

.snspolicy{
	color: #ffffff;
}

.snspolicy:hover{
	opacity: 0.7;
}

.copyright{
	text-align: center;
	color: #ffffff;
	margin-top: 90px;
	font-size: 14px;
}






@media screen and (max-width: 767px){
	#main_content{
		min-width: auto;
	}
	
	
	
	
	/* PC・SPの表示・非表示*/
	.sp{
		display: block;
	}

	.pc{
		display: none;
	}
		
	
	/* コンテンツ幅 */
	.contents01{
		max-width: 980px;
		width: 100%;
		margin:0 auto;
		padding: 0px 7.4vw;
	}

	.contents02{
		max-width: 1200px;
		width: 100%;
		margin:0 auto;
		padding: 0px 8vw;
	}




	
	/* メインビジュアル */
	.main{
		width: 100%;
		height: auto;
		background-color: #f4f7f9;
		background-image: url("../img/common/main_title_sp.png");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		padding: 40px 0px;
		text-align: center;
	}

	.main_title{
		color: #ffffff;
		font-size: 26px;
	}





	/* パンくず */
	.breadcrumb {
		margin: 0;
		padding: 0;
		list-style: none;
		padding-top: 15px;
		margin-left: 30px;
	}

	.breadcrumb li {
		display: inline;/*横に並ぶように*/
		list-style: none;
		font-weight: 0;/*太字*/
		font-size: 16px;
	}

	.breadcrumb li:after {/* >を表示*/
		content: '>';
		padding: 0 0.9em;
		color: #ffffff;
	}

	.breadcrumb li:last-child:after {
		content: '';
	}

	.breadcrumb li a {
		text-decoration: none;
		color: #ffffff;/*色*/
	}

	.breadcrumb li a:hover {
		text-decoration: underline;
	}

	/* ヘッダー */
	header{
		width: 100%;
		height: auto;
		padding-left: 10px;
		background-color: #ffffff;
		display: flex;
		justify-content: space-between;
		position:fixed;
		top: 0;
		z-index: 10;
	}

	.logo_header{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.logo_pc{
		display: none;
	}

	.logo_sp{
		display: block;
		width: 70%;
	}
	
	.header_menu{
		display: none;
	}
	
	
	
	
	
	/****** ハンバーガーメニュー ******/
	/* ハンバーガーメニューのボタン */
	.sp-menu{
		display: none;
	}

	.p-hamburger {
		display: flex;
		flex-direction: column;
		cursor: pointer;/* カーソルが上に来たらポインターに変身 */
		position: fixed; /* 設置する位置を固定 */
		top: 8px; /* 上からの位置 */
		right: 3px; /* 右からの位置 */
		z-index: 9999; /* 一番手前に表示 */
		width: 50px; /* 横幅 */
		height: 50px; /* 縦幅 */
		background-color: transparent; /* 四角の色 */
		border-radius: 0; /* 角丸 */
		padding-top: 13px;
		padding-bottom: 12px;
		padding-left: 12px;
		border:none;/* 枠線 */
	}

	.p-hamburger span {
		width: 25px;
		height: 2px;
		background-color: #57448D;/* 三本線の色 */
		margin: 2.5px 0;
		transition: 0.3s;/* 三本線の動く時間 */
	}
	
	
	
	
	
	/* ハンバーガーメニューの中身 */
	.sp-menu{
		display: block;
	}

	#gnav{
		display: block;
		width: 100%;
		height:100%;
		background-color:#2E1D5D; 
	}

	.hamburger-btn{
		margin-top:7.4vw;
		text-align: center;
	}

	.hamburger-menu1{
		margin-top: 5.3vw;
	}

	.hamburger-menu1 li{
		font-size:20px;
		border-top: 1px solid #ffffff;
		border-bottom: 1px solid #ffffff;
		margin-top: -1px;
		margin-left: 6vw;
		margin-right: 6vw;
		padding:30px 0px;
		color:#ffffff;
		font-weight: 600;
		text-align: center;
	}
	.hamburger-menu1 a{
		display:block;
		color:#ffffff;
	}
	.hamburger-menu1 a:hover{
		opacity: 0.7;
	}
	
	.logo_header_hamburger{
		padding: 10px 0px;
		padding-left: 15px;
	}

	.logo_header_hamburger img{
		max-width: 100%;
		height: auto;
	}
	
	.logo_sp_01{
		padding-right: 40px;
	}
	
	
	
	
	
	/* フッター */
	footer{
		width: 100%;
		height: auto;
		background-color: #f4f7f9;
		background-image: url("../img/common/footer_back.png");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		padding-top: 40px;
		padding-bottom: 2.6vw;
	}

	.footer_top{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer_icon_pc{
		display: none;
	}
	
	.footer_icon_sp{
		display: block;
		margin-top: 15px;
		text-align: center;
	}
	
	.footer_banner{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding-left: 0vw;
		padding-right: 0vw;
		text-align: center;
	}
	
	.banner_01{
		margin-right: 0px;
		width: 100%;
	}
	
	.banner_02{
		margin-right: 0px;
		margin-top: 10px;
		width: 100%;
	}
	
	.footer_policy{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top:15px;
	}
	
	.privacypolicy{
		margin-right: 0px;
		color: #ffffff;
		font-size: 16px;
	}
	
	.privacypolicy:hover{
		opacity: 0.7;
	}
	
	.snspolicy{
		color: #ffffff;
		font-size: 16px;
	}
	
	.footer_policy01{
		text-align: center;
		width: 100%;
	}
	
	.footer_01{
		display: block;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 35px;
	}
	
	.copyright{
		text-align: center;
		color: #ffffff;
		margin-top: 30px;
		font-size: 12px;
	}

	
}






































