@charset "utf-8";

/*▼モバイルファースト 全共通（スマホ用）*/

* {
	font-size: 100%;
	font-family: 游ゴシック;
	color: #333333;
	list-style: none;
}

a {
	text-decoration: none;
}

body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
}

#container {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px;
}

#header {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 10px 0px 0px 0px;
	border: none;
	background-color: #ffffff;
}

.header_inner {
	width: 100%;
	height: auto;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

#main {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px;
	border: none;
}

#footer {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px;
	border: none;
	background-color: #f5f5f5;
}

.footer_c {
	width: 100%;
	height: auto;
}

p.header_tline {
	display: none;
}

img.c_name1 {
	width: auto;
	height: 30px;
	margin: 15px 3px 10px 0px;
	padding: 0px;
	border: none;
}

img.c_logo1 {
	width: auto;
	height: 25px;
	margin: 0px 0px 15px 20px;
	padding: 0px;
	border: none;
}

ul.p_number {
	display: none;
}

/*▼ここから携帯用メニュー*/
div#nav-drawer {
	display: block;
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-color: gray;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}

/*アイコンのスペース*/
#nav-open {
	float: right;
	width: 28px;
	height: 20px;
	vertical-align: middle;
	background-color: #ffffff;
	margin: 10px 10px auto auto;
	padding: 8px 5px 5px 10px;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
	position: absolute;
	height: 2px; /*線の太さ*/
	width: 25px; /*長さ*/
	border-radius: 3px;
	background: #999999;
	display: block;
	content: "";
}

#nav-open span:before {
	top: 8px;
}
#nav-open span:after {
	top: 16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
	display: none; /*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0; /*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: 0.3s ease-in-out;
}

/*メニュー1層目中身*/
#nav-content {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9997; /*最前面に*/
	width: 85%; /*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 767px; /*最大幅（調整してください）*/
	height: auto;
	background: #ffffff; /*背景色*/
	transition: 0.3s ease-in-out; /*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-100%); /*左に隠しておく*/
	border: 1px #ffffff solid;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block; /*カバーを表示*/
	opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%); /*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#nav-input:checked ~ #nav-open {
	margin: 10px 10px auto auto;
	z-index: 9999;
	position: relative;
}

#nav-input:checked ~ #nav-open span,
#nav-open span:before,
#nav-open span:after {
	position: absolute;
	height: 2px; /*線の太さ*/
	width: 25px; /*長さ*/
	border-radius: 3px;
	display: block;
	content: "";
	cursor: pointer;
}
#nav-input:checked ~ #nav-open span {
	height: 0px;
	width: 0px;
	background-color: #ffffff;
}
#nav-input:checked ~ #nav-open span:before {
	top: 8px;
	transform: rotate(45deg);
}
#nav-input:checked ~ #nav-open span:after {
	top: 8px;
	transform: rotate(-45deg);
}

/*メニュー2層目*/

/*チェックボックス等は非表示に*/
.menu2-unshown,
.menu3-unshown,
.menu4-unshown {
	display: none;
}

/*2層目メニューアイコンスペース*/
#menu2-open,
#menu3-open,
#menu4-open {
	float: right;
	width: 28px;
	height: 20px;
	vertical-align: middle;
	background-color: #f5f5f5;
	margin: -55px 20px 0px 0px;
	padding: 10px 12px 10px 8px;
}

/*2層目法人案内メニュー中身*/
.mb_ddmenu_2,
.mb_ddmenu_3,
.mb_ddmenu_4 {
	display: none;
}

/* + をCSSだけで表現*/
#menu2-open span,
#menu2-open span:before,
#menu2-open span:after,
#menu3-open span,
#menu3-open span:before,
#menu3-open span:after,
#menu4-open span,
#menu4-open span:before,
#menu4-open span:after {
	height: 2px; /*線の太さ*/
	width: 25px; /*長さ*/
	border-radius: 3px;
	background: #999999;
	display: block;
	content: "";
	cursor: pointer;
	float: right;
}

#menu2-open span,
#menu3-open span,
#menu4-open span {
	margin: 7px 0px 0px 0px;
	padding: 0px;
	transform: rotate(0deg);
}

#menu2-open span:before,
#menu3-open span:before,
#menu4-open span:before {
	height: 0px;
	width: 0px;
}

#menu2-open span:after,
#menu3-open span:after,
#menu4-open span:after {
	margin: -1px 0px 0px 0px;
	padding: 0px;
	transform: rotate(-90deg);
}

/*チェックが入ったら*/
#menu2-input:checked ~ .mb_ddmenu_2,
#menu3-input:checked ~ .mb_ddmenu_3,
#menu4-input:checked ~ .mb_ddmenu_4 {
	display: block;
	margin: 0px 0px 0px 65px;
	padding: 0px 0px 0px 0px;
}

#menu2-input:checked ~ #menu2-open span,
#menu2-open span::before,
#menu2-open span:after,
#menu3-input:checked ~ #menu3-open span,
#menu3-open span::before,
#menu3-open span:after,
#menu4-input:checked ~ #menu4-open span,
#menu4-open span::before,
#menu4-open span:after {
	height: 2px; /*線の太さ*/
	width: 25px; /*長さ*/
	border-radius: 3px;
	background: #999999;
	display: block;
	content: "";
	cursor: pointer;
	float: right;
}

#menu2-input:checked ~ #menu2-open span,
#menu3-input:checked ~ #menu3-open span,
#menu4-input:checked ~ #menu4-open span {
	margin: 7px 0px 0px 0px;
	padding: 0px;
	transform: rotate(0deg);
}

#menu2-input:checked ~ #menu2-open span:before,
#menu3-input:checked ~ #menu3-open span:before,
#menu4-input:checked ~ #menu4-open span:before {
	display: none;
}

#menu2-input:checked ~ #menu2-open span:after,
#menu3-input:checked ~ #menu3-open span:after,
#menu4-input:checked ~ #menu4-open span:after {
	display: none;
}

/*メニューのCSS*/
ul.mb_menu {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 100%;
	height: auto;
}

.mb_menu_list,
.mb_menu_list0 {
	border-top: #999999 2px solid;
	margin: 0px;
	padding: 0px 0px 0px 0px;
	font-size: 1.1em;
}

.mb_menu_list a,
.mb_menu_list0 a {
	display: block;
	margin: 0px;
	padding: 20px 0px 20px 0px;
}

.mb_menu_list0 {
	border: none;
}

.mb_menu img {
	width: 30px;
	height: auto;
	margin: 0px 10px 0px 20px;
	padding: 0px;
	vertical-align: middle;
}

.mb_ddmenu_2 li,
.mb_ddmenu_3 li,
.mb_ddmenu_4 li {
	margin: 0px;
	padding: 0px 0px 0px 25px;
	border-width: 1px 0px 0px 1px;
	border-color: #999999;
	border-style: solid;
}

/*▲ここまで携帯用メニュー*/

/*pc用メニュー非表示*/
ul.pc_menu {
	display: none;
}

/*ヘッダー部写真*/
.top_img {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px;
	text-align: center;
}

img.oshirase_m {
	width: 25%;
	height: auto;
}

img.kyoten_m {
	width: 15%;
	height: auto;
}

.main_box1 {
	width: 90%;
	height: auto;
	margin: 20px auto 20px auto;
	padding: 0px;
	border: none;
}

.main_box2 {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	/*    background-image: url(img/mbg2.jpg);
    background-size: cover;
  */
}

img.c_name2 {
	width: auto;
	height: 30px;
	margin: 25px 10px 0px 10px;
	padding: 0px;
	border: none;
	/*  background-color: red;*/
}

img.c_logo2 {
	width: auto;
	height: 35px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	border: none;
	/*  background-color: #666666;*/
}

div.c_info1 {
	text-align: center;
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 30px 0px 0px 0px;
	background-color: #dcdcdc;
}

div.c_info1 img.c_name2 {
	width: auto;
	height: 30px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	border: none;
}

div.c_info1 img.c_logo2 {
	width: auto;
	height: 30px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	border: none;
	/*  background-color: #666666;*/
}

div.c_info1 p.left_c {
	width: 57%;
	height: auto;
	font-size: 0.9rem;
	font-weight: 500;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	text-align: left; /*
    background-color: #09c;*/
}

.main_box2 {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	background-color: #f5f5f5;
}

.main_box3 {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px 0px 10px 0px;
	/*    background-color: red;
  */
}

.sup {
	width: auto;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	text-align: center;
	font-size: 0.8rem;
	/*    background-color: blue;
  */
}

.sup img {
	height: 40px;
	width: auto;
	margin: 0px 0px 0px 0px;
	border: none;
}

div.c_info2 {
	width: auto;
	height: auto;
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 20px 0px;
}

#footer ul.pcf_menu {
	text-align: center;
	display: flex;
	width: 95%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px; /*
    background-color: yellow;*/
}
#footer ul.pcf_menu img {
	margin: 0px 3px 5px 0px;
	padding: 0px 0px 0px 0px;
	vertical-align: middle;
}

#footer ul.pcf_menu li {
	text-align: left;
	width: 100%;
	height: auto;
	font-weight: 600;
	font-size: 0.8rem;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px; /*
    background-color: red;*/
}

#footer ul.pcf_menu li a {
	color: #3f3f3f;
}

#footer ul.pcf_menu li ul li {
	width: 120%;
	height: auto;
	margin: 5px auto 0px -20px;
	padding: 0px;
	text-align: left;
	font-weight: 500;
	font-size: 0.7rem; /*
    background-color: #f29cc7;*/
}

#footer ul.pcf_menu li ul li:first-child {
	margin: 3px 0px 0px -20px;
	padding: 0px;
}

p.cr {
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding: 20px 0px 20px 0px;
}

/*タブレット用追加*/
@media screen and (min-width: 768px) {
}

/*▼PC用追加*/

@media screen and (min-width: 920px) {
	#container {
		width: 100%;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 0px;
	}

	#header {
		position: fixed;
		z-index: 100;
		width: 100%;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 0px;
		background-color: #ffffff;
		background-image: url(img/hbbg.gif);
		background-size: 100% 115px;
	}

	.header_inner {
		width: 75%;
		height: auto;
		margin: 10px auto 0px auto;
		padding: 0px;
	}

	#main {
		width: 100%;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 0px;
		border: none;
		position: relative;
		top: 108px;
	}

	#footer {
		width: 100%;
		height: auto;
		margin: 110px 0px 0px 0px;
		padding: 20px 0px 0px 0px;
		background-image: url(img/fbg_1.gif);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: bottom;
		background-color: #fff9eb;
	}

	.footer_c {
		width: 900px;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 0px;
	}

	p.header_tline {
		display: block;
		text-align: right;
		font-size: 0.8rem;
		font-weight: bold;
		letter-spacing: 0.2em;
		margin: 0px 15px 0px 0px;
		padding: 0px 60px 0px 0px;
		background-image: url(img/t_line.gif);
		background-position: top right;
		background-repeat: no-repeat;
	}

	p.header_tline a {
		color: #fff;
	}

	img.c_name1 {
		width: auto;
		height: 60px;
		margin: 20px 0px 0px 20px;
		padding: 0px;
		border: none;
	}

	img.c_logo1 {
		width: auto;
		height: 40px;
		margin: 0px 0px 0px 0px;
		padding: 0px;
		border: none;
	}

	ul.p_number {
		display: block;
		float: right;
		margin: 10px 10px 10px 0px;
		padding: 0px;
	}

	ul.p_number li.h_toiawase {
		font-size: 0.9rem;
		font-weight: bold;
		text-align: center;
		margin: 0px 3px 5px 10px;
		padding: 0px;
		color: #336600;
	}

	ul.p_number li.tel_icon img {
		vertical-align: middle;
		width: auto;
		height: 33px;
		margin: 5px 5px 0px 5px;
		padding: 0px;
	}

	/*モバイル用メニュー*/
	div#nav-drawer {
		display: none;
	}

	/*PCドロップダウンメニュー*/
	ul.pc_menu {
		display: flex;
		margin: 0px 0px 0px 400px;
		padding: 0px 40px 0px 0px;
		/*  background-color: red;
*/
	}

	ul.pc_menu li {
		width: auto;
		height: auto;
		margin: 0px 0px 0px auto;
		padding: 0px;
		font-size: 0.9rem;
		font-weight: 600;
		text-align: center;
		position: relative;
	}

	ul.pc_menu li a {
		display: block;
		margin: 0px;
		padding: 0px;
	}

	ul.pc_menu li img {
		height: 30px;
		width: auto;
		margin: 0px 5px 0px 0px;
		padding: 0px;
		vertical-align: text-bottom;
	}

	ul.pc_menu li ul {
		list-style: none;
		position: absolute;
		top: 100%;
		left: 0;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		background-color: #f5f5f5;
	}

	ul.pc_menu li ul li {
		overflow: hidden;
		width: 170px;
		height: 0;
		-moz-transition: 0.5s;
		-webkit-transition: 0.5s;
		-o-transition: 0.5s;
		-ms-transition: 0.5s;
		transition: 0.5s;
		filter: alpha(opacity=90);
		-ms-filter: "alpha(opacity=90)";
		-moz-opacity: 0.9;
		opacity: 0.9;
		zoom: 1;
	}

	ul.pc_menu li ul li a {
		display: block;
		margin: 0px 0px 0px 0px;
		padding: 10px;
		text-align: left;
	}

	ul.pc_menu li ul li a:hover {
		background-color: #09c;
		color: #ffffff;
	}

	ul.pc_menu li:hover ul li {
		overflow: visible;
		height: 40px;
	}

	/*トップページメイン画像*/
	.top_img {
		clear: both;
		width: 100%;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 0px;
		text-align: center;
	}

	.main_box0 {
		width: 900px;
		height: auto;
		margin: 20px auto 30px auto;
		padding: 0px 0px 0px 0px;
		/*    background-color: red;
  */
	}

	.menu-B {
		width: 200px;
		height: auto;
		margin: 10px 20px 0px 0px;
		padding: auto;
	}

	.main_box1 {
		width: 900px;
		height: auto;
		margin: 80px auto 0px auto;
		padding: 0px 0px 0px 0px;
		/*    background-color: red;
  */
		border: #eabe78 2px solid;
	}

	.main_box2 {
		width: 100%;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 0px 0px 430px 0px;
		background-image: url(img/mbg2.jpg);
		background-size: cover;
	}

	.main_box3 {
		width: 100%;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 20px 0px 100px 0px;
		background-image: url(img/mb3-bg.gif);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: bottom;
		/*    background-color: red;
  */
	}

	.sup {
		width: 400px;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 20px 0px 10px 0px;
		text-align: center;
	}

	.sup img {
		height: 50px;
		width: auto;
		margin: 0px 0px 0px 0px;
		border: none;
	}

	.kyoten_box {
		width: 1100px;
		height: auto;
		margin: 60px auto 40px auto;
		padding: 0px 0px 50px 0px;
	}

	img.koushin_m,
	img.kyoten_m {
		display: block;
		width: 150px;
		height: auto;
		margin: -49px 0px 0px -2px;
		padding: 0px 0px 0px 0px;
	}

	.koushinbi {
		font-size: 1rem;
		padding: 5px 5px 5px 15px;
		margin: 0px 0px 0px 0px;
		color: #f7931e;
		font-weight: 600;
		width: 230px;
	}

	.hizuke {
		color: #f7931e;
		font-weight: 600;
		margin: 0px 10px 0px 0px;
	}

	.hizuke img {
		margin: 0px 0px 0px 10px;
		height: 15px;
		width: auto;
	}

	.midashi {
		margin: 0px 0px 0px 15px;
	}

	div.c_info1 {
		width: 400px;
		height: auto;
		margin: 20px 0px 0px 30px;
		padding: 0px 0px 0px 0px;
		border: none;
		text-align: left;
		background-color: transparent;
	}

	div.c_info1 img.c_name2 {
		width: auto;
		height: 35px;
		margin: 0px 0px 0px 5px;
		padding: 0px 0px 0px 0px;
		border: none;
	}

	div.c_info1 img.c_logo2 {
		width: auto;
		height: 90px;
		margin: 0px 0px 0px 0px;
		padding: 0px;
		border: none;
		/*  background-color: #666666;*/
	}

	div.c_info1 p.left_c {
		font-size: 1.2rem;
		font-weight: 500;
		width: 100%;
		height: auto;
		margin: 0px 0px 0px 0px;
		padding: 0px;
	}

	div.c_info2 {
		float: right;
		width: auto;
		height: auto;
		margin: 0px 40px 0px 0px;
		padding: 0px 0px 0px 0px;
		border-left: #eddbca 2px solid;
	}

	#footer ul.pcf_menu {
		text-align: center;
		display: flex;
		width: auto;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 0px 0px 0px 0px;
	}
	#footer ul.pcf_menu img {
		margin: 0px 5px 5px -24px;
		padding: 0px 0px 0px 0px;
		vertical-align: middle;
	}

	#footer ul.pcf_menu li {
		text-align: left;
		width: 260px;
		height: auto;
		font-weight: 600;
		margin: 0px 0px 0px 28px;
		padding: 0px 0px 0px 0px;
	}

	#footer ul.pcf_menu li a {
		color: #3f3f3f;
	}

	#footer ul.pcf_menu li ul li {
		width: 260px;
		height: auto;
		margin: 1px 0px 0px -40px;
		padding: 0px;
		text-align: left;
		font-weight: 500;
		font-size: 0.9rem;
	}

	#footer ul.pcf_menu li ul li:first-child {
		margin: 3px 0px 0px -40px;
		padding: 0px;
	}

	#footer p.cr {
		text-align: left;
		width: 100%;
		height: auto;
		font-weight: 500;
		margin: 100px auto 0px auto;
		padding: 20px 0px 20px 0px;
	}

	/*ここから追加20250616*/
	.mv_box {
		width: 100%;
		height: auto;
		margin: 0px auto 0px auto;
		padding: 0px;
		text-align: center;
	}

	.m_box {
		text-align: center;
		width: 300px;
		height: auto;
		border: none;
		float: right;
	}

	.song {
		font-size: 100%;
		width: 298px;
		height: auto;
		margin: 0px auto 5px auto;
		padding: 7px 0px 2px 0px;
		border-radius: 20px;
		border: 1px solid #999999;
		background-color: #ffffff;
	}
	.haikei {
		background-image: url("img-1/BACK.png");
		background-size: cover; /* 全体にフィット */
		background-position: center; /* 中央に配置 */
		background-repeat: no-repeat; /* 繰り返さない */
	}

	.top_gazou table {
		margin: 0 auto;
	}

	.t_block02 {
		text-align: center;
		padding: 20px;
	}

	.shikaku {
		margin: 0 10px;
	}
}
