@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,400,600|Roboto:700,600");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}


@media (min-width: 960px) {

	.submenu{
		display:block;
		color: #0368B5;
	}
}
@media (max-width: 959px) {

	.side_container{
		width: 100%;
		padding: 30px;
		order: 2;
	}
	.submenu{
		display:block;
		color: #0368B5;
		position: relative;
	}
}

.menu_group > a {
  position: relative;
  padding-right: 20px; /* 矢印分の余白 */
}

.menu_group > a::after {
  content: '▼'; /* 初期は閉じている状態（下向き） */
  position: absolute;
  top: 50%;
  right:1px;
  transform: translateY(-50%);
  font-size: 12px;
  color: #0368B5;
  transition: transform 0.2s ease;
  border: 0px!important;
}

/* 開いているとき（li.menu_group に .open が付く） */
.menu_group.open > a::after {
  content: '◀'; /* 上向きに切り替え */
}
.menu_group.open > a::before {
  width:100%;
  border-bottom: solid 1px #109cda;
}

.menu_group.open > a {
  color:#0368B5!important;
  font-weight:bold;
}



.submenu > li > a{
	display:block;
	transition: all .5s ease;
	position: relative;
	color: #000;
	padding: 15px 15px 15px 0;
	font-size: 1.5rem;
	line-height: 1.5em;
	border-bottom: solid 1px #cccccc;
}
.submenu > li > .active{
	color: #0368B5;
	border-bottom: solid 1px #109cda;
/*	pointer-events: none;*/
	font-weight: 700;
}
.submenu > li > a::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 5px;
	width:6px;
	height: 6px;
	border-top: solid 1px #0368B5;
	border-right: solid 1px #0368B5;
	transform: rotate(45deg) translateY(-50%);
	transition: all .2s ease;
}
.submenu > li > a:hover::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width:6px;
	height: 6px;
	border-top: solid 1px #0368B5;
	border-right: solid 1px #0368B5;
	transform: rotate(45deg) translateY(-50%);
	transition: all .2s ease;
}
.submenu > li > a::before{
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width:0;
	height: 1px;
	background-color: #0368B5;
	transition: all .2s ease;
}
.submenu > li > a:hover{
	display:block;
	color: #0368B5;
}
.submenu > li > a:hover::before{
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width:100%;
	height: 1px;
	background-color: #0368B5;
}

	.sub_menu_li {
		margin-left:10%;
		width:90%;
		position: relative;
	}
	
    .sub_menu_li::before {
            content: ""; /* 「┣」の縦線を作成 */
            position: absolute;
            left: -20px;
            top: 0;
            width: 1px; /* 縦線の幅 */
            height: 100%; /* リスト要素の高さいっぱい */
            background-color: #cccccc; /* 線の色 */
        }
	.sub_menu_li_first::before {
            top: 10px!important;
	}
	.sub_menu_li_last::before {
		height: 50%!important;
	}
		
    .sub_menu_li::after {
            content: ""; /* 「┣」の横線を作成 */
            position: absolute;
            left:  -20px;
            top: 50%; /* 縦線の中央に配置 */
            width: 10px; /* 横線の長さ */
            height: 1px; /* 横線の幅 */
            background-color: #cccccc; /* 線の色 */
            transform: translateY(-50%); /* 縦方向の中央揃え */
        }
		
	.sub_menu_li a {
/*		font-size:85%!important;*/
		padding-bottom:10px!important;
	}
		
    
    
    
    
/*********************************** サービス　*****************************************/
.sv_tit_top {
    position: absolute;
    top:-25px;
    left:4px;
    font-size:14px;
    padding:5px 10px 5px 10px;
    background: linear-gradient(0deg, #1bb5ee 0%,  #2597c4 50%, #1bb5ee 100%);
    border-radius: 10px;
    line-height:14px;
    font-weight:bold;
}

  .sene_wave-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 5px;
	box-shadow: 
  0 4px 8px rgba(0, 0, 0, 0.4),   /* 下方向の影 */
  0 -2px 4px rgba(0, 0, 0, 0.08); /* 上方向の影（少し弱め） */
  }

  .sene_wave-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .sene_wave-img-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  @media (max-width: 959px) {
	.sene_wave-img-wrap::before {
	  background-color: rgba(0, 0, 0, 0.3)!important;
	}
  }
  
  .sene_wave-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top right;
    display: block;
    position: relative;
    z-index: 0;
  }
  
  @media (max-width: 959px) {
	.sene_wave-container img {
	  object-position: top right;
	}
  }

  .sene_wave-container svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    pointer-events: none;
	z-index: 2;
  }
  .responsive-wave {
    transform: scaleY(-1);
  }

  .sene_wave-text {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    font-size: 36px;
    line-height: 40px;
    font-weight: normal;
    letter-spacing: 2px;
    z-index: 10;
    pointer-events: none;
	padding-left:10px;

    /* 背景色やぼかしは外しました */
  }

  .sene_wave-line {
    width:45%;
    height: 2px;
    background: linear-gradient(to right, #fff, #fff,#fff,transparent);
    opacity: 0.9;
    margin: 15px 0 0 0;
  }

  .sene_wave-subtext {
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 1px;
    opacity: 0.8;
    color: white;
    padding-left: 3px;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  }
  
table.service_table_th2_left tr:nth-of-type(n+2) th:nth-of-type(n+2) {
  text-align: left !important;
}