@charset "utf-8";
body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #333;
}

/*ヘッダ－*/
header{
	padding: 20px 0 10px;
}


.head-wrap{
	width: 90%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end
	justify-content: space-between;
}

.head-wrap h1{
	display: flex;
	align-items: flex-end;
	position: static;
	margin: 0;
	padding: 0;
	width: 20%;
}

.head-wrap h1 img {
	display: block;
	max-height: 60px;
	height: auto;
	width: auto;
	margin: 0;
	vertical-align: middle;
}

.head-cont{
	width: 77%;
	text-align: right;
}
.head-top{
	width: 100%;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	align-items: center;
	text-align: right;
}


/* 検索フォーム */
.head-top #kensaku {
	position: static;
	width: 30%;
	min-width: 200px;
	margin-top: 2px;
}

.head-top #kensaku form {
	padding: 0;
	background: #f0f0f0;
	bor0der-radius: 4px;
	height: 36px;
	position: relative;
	display: flex;
	align-items: center;
}

.head-top #kensaku form input[type='text'] {
	height: 100%;
	width: 100%;
	background: none;
	border: 1px solid transparent;
	border-radius: 4px;
	padding: 6px 36px 6px 8px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
	font-family: 'Noto Sans JP', 'Helvetica Neue', 'Segoe UI', sans-serif;
}

.head-top #kensaku form input[type="submit"] {
	display: none;
}

.head-top #kensaku form::after {
	content: "\f002"; /* Font Awesome search icon */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 14px;
	color: #666;
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	pointer-events: none;
}



/* header CTA */

.head-top a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	margin-left: 12px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	background-color: #0162af; /* デフォルトは青 */
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	height: 28px;
}

.head-top a i {
	font-size: 14px;
	margin-right: 6px;
}

.head-top a.shop {
	background-color: #ff9900;
	font-weight: 500;
}

.head-top a:hover {
	background-color: #004e8a; /* 通常ボタンhover:濃い青 */
}

.head-top a.shop:hover {
	background-color: #cc7a00; /* オレンジhover:少し濃いオレンジ */
}

/* メインナビ全体の構成 */
.head-cont nav#mainmenu > ul {
	width: 100%;
	position: inherit;
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
}
.head-cont nav#mainmenu > ul li {
	padding: 0 20px;
	border-left: 1px solid #000;
}
.head-cont nav#mainmenu > ul li:first-child {
	border-left: none;
}
nav#mainmenu ul li,
nav#mainmenu ul li a {
	font-size: 14px;
	font-weight: 500;
	z-index: 9999;
}

/* サブメニュー表示制御 */
#mainmenu li {
  position: relative;
}


/* メガメニュー：3列表示 */
.three-column-menu {
  display: none;
  position: absolute;
  top: 100%;
  left:150%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 700px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 9999;
  justify-content: space-between;
  gap: 30px; /* 列間の余白 */
  text-align:left;
}

.has-submenu:hover .three-column-menu {
  display: flex;
}

/* 各列のスタイル */
.three-column-menu .column {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

/* 各項目のスタイル（必要に応じて） */
.mNavi.three-column-menu > div {
  font-size: 14px;
  white-space: nowrap;
}

.mNavi strong {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

.mNavi a {
  padding: 4px 0;
  color: #444;
  text-decoration: none;
}

.mNavi a:hover {
  color: #0162af;
}




/*コンテナ*/
#container{
	margin-top: 0;
}
/*タブメニュー*/
.tabs a.tab0 { 
width:230px;
	color:#fff;
	font-size:15px;
	font-weight:bold;
	text-align:center;
	display:block;
	text-decoration:none;
	border:1px solid #ccc;
	background: #ffffff; /* Old browsers */
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #09003b 0%, #150083 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#09003b), color-stop(100%,#150083)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #09003b 0%,#150083 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #09003b 0%,#150083 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #09003b 0%,#150083 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #09003b 0%,#150083 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#09003b', endColorstr='#150083',GradientType=0 ); /* IE6-9 */
	float: left;
	margin-right: 10px;
        margin-bottom: 10px;
	padding-top: 12px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
	}
.tabs a.tab0.tab4,.tabs a.tab0.tab8{
	margin-right: 0;
}
.tabs a.tab0- { 
width:230px;
	color:#fff;
	font-size:15px;
	font-weight:bold;
	text-align:center;
	display:block;
	text-decoration:none;
	border:1px solid #ccc;
	background: #ffffff; /* Old browsers */
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #09003b 0%, #150083 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#09003b), color-stop(100%,#150083)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #09003b 0%,#150083 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #09003b 0%,#150083 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #09003b 0%,#150083 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #09003b 0%,#150083 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#09003b', endColorstr='#150083',GradientType=0 ); /* IE6-9 */
	float: left;
	margin-bottom: 10px;
	padding-top: 12px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
	}

/*タイトル*/
#ukv{
	margin-top: 0;
	background-color: #000;
}
/*TOPページ*/
.top-slider {
	width: 100%;
	margin: 0;
	position: relative;
	overflow: visible;
}
.slick-dotted.slick-slider{
	margin-bottom: 0!important;
}
.top-slider img{
	width: 100%;
}
.top-img{ margin-bottom: 55px; }
.top-img img{
	max-width: 100%;
	height: auto;
}
/*Akubox*/
.akuvox-text{
	margin: 50px auto;
}
.akuvox-text li{
	padding-left: 10px;
	margin-bottom: 30px;
	list-style:disc;
	list-style-position: inside;
}
.akuvox-text a{
	font-size: 24px;
	font-weight: bold;
}
/*Akubox-2*/
.akuvox-2 > p{
	margin-bottom: 50px;
	font-size: 16px;
}
.akuvox-2-cont{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: start;
}
.akuvox-2-cont div{
	width: 31%;
	margin-bottom: 30px;
}
.akuvox-2-cont div a{
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.akuvox-2-cont div img{
	width: 100%;
	height: auto;
	margin-bottom: -5px;
	border: 1px solid #ccc;
}
.akuvox-2-cont div h4{
	font-size: 16px;
	font-weight: bold;
}
/*フォーム*/
.wpcf7-form .wpcf7-submit {
    border: 1px solid #666;
}
/*TOPスクロールボタン*/
#page-top {
	position: fixed;
	bottom: 11vh;
	right: 30px;
	font-size: 77%;
	z-index: 9;
}
#page-top a {
  display: flex;                 /* フレックスで */
  align-items: center;           /* 垂直中央 */
  justify-content: center;       /* 水平中央 */
	width: 46px;
	height: 46px;
  padding:0 !important;   /* ← まずは確実に打ち消し */
  line-height:1;          /* 文字の余白をなくす */
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	box-sizing: border-box;
	background: #070084;
	overflow: hidden;
}

#page-top a span{
	display: block;
	font-size: 2em;
	font-weight: 400;
	color: #fff;
}
#page-top a:hover {
	opacity: 0.5;
}
.for-sp{ display: none!important; }

@media screen and (max-width: 767px){
.for-pc{ display: none!important; }
.for-sp,.idMediaWrap{ display: inherit!important; }
/*ヘッダ－*/
header{
	display: none;
}
#header .title img{
    width: auto;
    height: 45px;
	margin: 8px 15px -1px;
}
#main .blue a{
	color: #fff;
}
/*TOPページ*/
#toppage #container{
	margin-top: 0;
}
.top-slider{
	height: 510px;
}
.top-slider img{
	width: auto;
	height: 100%;
}
#toppage #contents h2,#toppage #contents h3{
	margin-right: 5%;
	margin-left: 5%;
}
#toppage #main #cont{
	width: 100%;
	padding: 0;
	position: relative;
}

#main .gray{
	display: inline-block;
	padding: 0 1em 0 0;
	color: #070084;
	background: #fff;
}
#main .gray:after{
	display: block;
	content: "";
	position: absolute;
	top: 10px;
	right: 5%;
	width: 80%;
	height: 2px;
	background : #070084;
	z-index: -1;
}
#main .sp-wrap {
	width: 90%;
	display: flex;
	flex-wrap:wrap; 
	justify-content: space-between;
	margin: 0 auto 10px;
	padding: 0;
}
#main .sp-wrap .solArea01,#main .sp-wrap .solArea02{
	width: 48%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
#main .sp-wrap .photo,#main .sp-wrap .photo img{
	width: 100%;
	height: auto;
	border: none;
}
#main .sp-wrap div.clear,#main .sp-wrap br,#main .sp-wrap .comment,#main .sp-wrap .more{
	display: none;
}
#main .solArea01.flex-cont,#main .solArea02.flex-cont{
	width: 90%;
	display: flex;
	flex-wrap:wrap; 
	justify-content: space-between;
	margin: 0 auto 30px;
	padding: 0;
}
#main .solArea01 .title,#main .solArea02 .title{
	font-size: 14px;
}
#main .flex-cont .photo{
	width: 35%;
	margin: 0;
	border: none;
}
#main .flex-cont .photo img{
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
}
#main .flex-cont .sol-cont{
	width: 60%;
	line-height: 1.5;
}
#main .flex-cont .sol-cont .title{
	margin-bottom: 5px;
	line-height: 1.3;
}
#main .flex-cont .sol-cont .more{
	width: 90%;
	margin: 5px 5% 0;
	text-align: right;
}


.morebtnArea{
	margin-right: 5%;
}
#main .sNav,#news{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
#main #cont div.idMediaWrap{
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.network,.voip{
	height: auto;
}
.prevBtna{
	left: 0;
	z-index: 1000;
}
.nextBtna{
	right: 0;
	z-index: 100;
}
.network li,.voip li{
	height: auto;
	margin: 0 10px;
	overflow: hidden;
}
.network .photo,.network .photo img,.voip .photo,.voip .photo img{
	width: 100%;
	height: auto;
}
/*Akubox-2*/
.akuvox-2-cont{
	display: block;
}
.akuvox-2-cont div{
	width: 100%;
	margin-bottom: 20px;
}
.akuvox-2-cont div img{
	margin-bottom: -10px;
}
/*タブ*/
.tabs a.tab1,.tabs a.tab2,.tabs a.tab3,.tabs a.tab4,.tabs a.tab5,.tabs a.tab6,.tabs a.tab7,.tabs a.tab8 {
	width: 45%;
}
/*タイトル*/
#ukv{
	margin-top: 0;
}
}
