@charset "utf-8";
/* CSS ここから*/

* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
    height: 100%;
	/*overflow-x: hidden;  html要素の横方向のスクロールバーを非表示にする */
}
body {
   	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
    background-color: #FFFFFF;
    color: #333;
	height: 100%;
    overflow-x: hidden; /* 横方向のスクロールバーを非表示にする */
    /*width: 100vw;  bodyの幅をビューポートの正確な幅に設定*/
}
img {
	vertical-align: top;
}
a img {
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
}
a:hover img, form.contact_form input.form_btn:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

/*
ヘッダー
-------------------------------------------*/
header {
	width: 100%;
	display: block;
	position: relative;
	background-color: #00984b;/*#009933*/
	height:60px;
}
header .logo{
width: 100%;
padding:15px 0 0;
height: auto;
margin:0px auto;
text-align: center;
left: 50%;
	right: 50%;
}

header .logo img{
margin: 0 auto;
}

header .top_logo{
width: 100%;
padding:15px 0 0;
height: auto;
margin:0px auto;
text-align: center;
left: 50%;
right: 50%;
}

header .top_logo img{
margin: 0 auto;
}
/*
header.header_bg_01 {
	background-image: url(img/heder_logo.png);
}*/
header h1 {
	font-weight: normal;
	font-size: 10px;
	line-height: 20px;
	position: absolute;
	z-index: 1000;
}

.full-background {
    width: 100%;
    overflow: hidden;
	margin:0;
    padding:0;
}

.full-background img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
	margin:0;
    padding:0;
	vertical-align: top;
}
header #g_navi{
	display: none;
}
#g_navi {
	position: fixed;
	width: 20%;
	height: 100%;
	top: 0px;
	left: 80%;
	display: none;
	padding-top: 110px;
	overflow: auto;
	z-index: 3000;
	background-color: #FFF;
	font-size: 14px;
	letter-spacing: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#g_navi ul {
	display: block;
	margin: 0px;
	padding: 0px;
	clear: both;
}

#g_navi ul li:first-child {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #EEE;
}

#g_navi ul li {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EEE;
}

#g_navi ul li a {
	color: #111;
	text-decoration: none;
	display: block;
	padding-top: 16px;
	padding-right: 30px;
	padding-bottom: 14px;
	padding-left: 20px;
	line-height: 22px;
	vertical-align: middle;
}
#g_navi ul li a:hover {
	color: #FFF;
	background-color: #00984b;
	}


/*
メニューボタン
-------------------------------------------*/

.menu_btn {
	display: block;
	height: 30px;
	width: 40px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	position: fixed;
	z-index: 5000;
	top: 15px;
	right: 5px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	background-color: #FFF;
}
.menu_btn:hover {
	cursor: pointer;
}

.menu_btn span {
	width: 28px;
	height: 2px;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -14px;
	background-color: #555;
}
.menu_btn span {
    transition: all 0.3s;
    transform: rotate(0deg);
	-webkit-transform: rotate(0deg);  
    -moz-transform: rotate(0deg);    
  }
.menu_btn span.top {
    transform: translateY(-8px);
	-webkit-transform: translateY(-8px);  
    -moz-transform: translateY(-8px);    
  }
.menu_btn span.bottom {
    transform: translateY(8px);
	-webkit-transform: translateY(8px);  
    -moz-transform: translateY(8px);    
}


.menu_btn:hover span.top {
    transform: translateY(-10px);
	-webkit-transform: translateY(-10px);  
    -moz-transform: translateY(-10px);    
}
.menu_btn:hover span.bottom {
    transform: translateY(10px);
	-webkit-transform: translateY(10px);  
    -moz-transform: translateY(10px);    
}


.menu_btn.opened  span.middle {
    background: rgba(255, 255, 255, 0);
	 transform: translateX(30px);
	 -webkit-transform: translateX(30px);  
    -moz-transform: translateX(30px);    
}
.menu_btn.opened  span.top {
    transform: rotate(-45deg) translateY(0px);
	-webkit-transform: rotate(-45deg) translateY(0px);  
    -moz-transform: rotate(-45deg) translateY(0px);    
}
.menu_btn.opened  span.bottom {
    transform: rotate(45deg) translateY(0px);
	-webkit-transform: rotate(45deg) translateY(0px);  
    -moz-transform: rotate(45deg) translateY(0px);    
}
/*
エフェクト
-------------------------------------------*/
.effect {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translateY(30px);
	-webkit-transform: translateY(30px);  
    -moz-transform: translateY(30px); 
	-webkit-transition: 1.0s ease-out;
	-moz-transition: 1.0s ease-out;
	transition: 1.0s ease-out;
}
.effect.d_02 {
transition-delay:0.2s;
-webkit-transition-delay:0.2s;
}
.effect.d_04 {
transition-delay:0.4s;
-webkit-transition-delay:0.4s;
}
.effect.d_06 {
transition-delay:0.6s;
-webkit-transition-delay:0.6s;
}
.effect.d_08 {
transition-delay:0.8s;
-webkit-transition-delay:0.8s;
}
.effect.start {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translateY(0px);
	-webkit-transform: translateY(0px);  
    -moz-transform: translateY(0px);    
}

/* トップ */
main {
    padding: 15px; /* Adjusted for smaller screens */
    /* max-width: 1200px;← これは不要なので削除 */
    margin: 15px auto !important; /* ← !important を追加 */
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100% !important; /* ← !important を追加 */
    box-sizing: border-box; /* パディング含めて幅制御 */
	max-width: 100% !important; /* ← !important を追加 */
	 }

/* トップ　←　スマート町会掲示板とは */
.hero-visual {
    position: relative;
    text-align: center;
    padding: 30px 0; /* Adjusted for smaller screens */
    background-image: url('houses_background.png');
    /* Assuming a background image */
    background-size: cover;
    background-position: center;
    min-height: 300px;
    /* Adjusted for smaller screens */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    /* ← 全体の文字サイズを大きく */
    /* aspect-ratio: 16 / 9; ← オプション：背景の比率を維持したい場合に有効 */
}
/*
サブページ　メインコンテンツ
-------------------------------------------*/
.cont_wrap {
	max-width: 1000px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.footer_cont_wrap {
	max-width: 1200px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.regionel {
	max-width: 1000px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.regionel img {
	margin-right: auto;
	margin-left: auto;
	padding:30px 30px 10px 150px;
	text-align: center;
}

.regionel p{
text-align: center;
color: #330000; 
font-size:16px;
line-height: 1.7em;
margin: 0 auto 10px auto;
}

.regionel h3{
text-align: center;
color: #330000; 
font-size:20px;
line-height: 2em;
margin: 0 auto 50px auto;
}

/*サービスと料金について*/
.service {
	max-width: 1000px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.service img {
	margin-right: auto;
	margin-left: auto;
	padding:0px 30px 10px 30px;
	text-align: center;
	margin-bottom: 30px;
}
.service .midashi{
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 10px;
}

.service .midashi span{
font-size:18px;
}
.service p{
text-align: right;
color: #330000; 
font-size:16px;
line-height: 1.7em;
padding-right: 40px;
}

/*ロコハブについて*/
.about_locohub {
	max-width: 1000px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.about_locohub img {
	margin-right: auto;
	margin-left: auto;
	padding:30px 30px 10px 30px;
	text-align: center;
}

.about_locohub h3{
font-size:24px;
line-height: 2em;
margin: 0 auto 20px auto;
padding-left: 35px;
}

.about_locohub2 {
	max-width: 1100px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.about_locohub2 img {
	margin-right: auto;
	margin-left: auto;
	padding:0px 30px 30px 30px;
	text-align: center;
	width: 100%;
}

.about_locohub2 h3{
font-size:26px;
line-height: 2em;
margin: -30px auto 20px auto;
text-align: center;
}

.about_locohub2 p{
font-size:20px;
line-height: 2em;
margin: 30px auto 20px auto;
text-align: center;
font-weight: 400;
}

.about_locohub2 .co{
font-size:26px;
line-height: 2em;
margin: 0px auto 0px auto;
text-align: center;
font-weight: bold;
}
.about_locohub2 .ad{
font-size:20px;
line-height: 1.7em;
margin: 0px auto 50px auto;
text-align: center;
font-weight: 400;
}

.about_locohub p{
font-size:20px;
line-height: 2em;
}
.about_locohub ul{
text-align: left;
list-style-type: decimal;
	margin-top: 20px;
	font-size: 20px;
}
.about_locohub ul li{
	margin-left: 24px;
	text-indent: 5px;
	padding-bottom: 15px;
	padding-left: 0.1em;
	text-indent: -0.0em;
	line-height: 1.7em;
	}
.about_locohub h4{
font-size:22px;
line-height: 2em;
margin: 20px auto 10px auto;
padding-left: 0px;
}
#colum {
  width: 100%; /*幅指定*/
  display: flex;
}
#left {
  width: 20%;
  padding-right: 30px;
}
#left img{
padding-left: 50px;
}
#right {
  width: 80%; /*幅指定*/
}
#right h2{
color: #FF6600;
font-size: 26px;
padding-left: 10px;
line-height: 1.7em;
}

table.a_table{
  width: 100%;
  border-spacing: 0;
margin-top: 0px;
	margin-bottom: 50px;
}

table.a_table th{
background-color: #f2f2f2;
 border-bottom: solid 1px #666;
border-top: solid 1px #666;
 padding: 10px 20px;
font-size: 20px;
border-left:none;
border-right: none;
font-weight: normal;
}

table.a_table td{
 padding: 10px 20px;
font-size: 20px;
border-left:none;
border-right: none;
font-weight: normal;
border-bottom: none;
}
/*サービスサイトボタン*/
.servicesite{
	position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 30px;
	padding-bottom: 50px;
	max-width: 1000px; 
	margin:0 auto;
}
.servicesite .btn_servicesite a {
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color:#FF9400;
	border:2px solid #FF9400;
	color: #FFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	font-size: 30px;
	line-height: 30px;
	text-decoration: none;
	font-weight: 600;
	width: 65%;
margin: 0 auto;
}

.servicesite .btn_servicesite  a:hover {
background-color:#FF9400;
border:2px solid #FF0000;
color: #fff;
}

.servicesite .btn_servicesite a i {
	padding-right: 10px;
}

@media screen and (max-width: 767px) {
#colum {
display: block;
  }
#left {
width: 100%;
margin: 0 auto;
text-align: center;
padding-right: 0px;
  }
#left img{
padding: 0px;
padding-left: 0px;
width: 40%;
}

#right {
width: 100%;
margin: 0 auto;
	}
table.a_table{
margin-top: 10px;
}	
table.a_table th{
font-size: 16px;
padding: 5px 0px 5px 10px;
}

table.a_table td{
font-size: 16px;
padding: 5px 0px 5px 10px;
}
	
#right h2{
color: #FF6600;
font-size: 20px;
padding-left: 0px;
line-height: 1.5em;
}
}

* html section.content{height:1%;}

.main_cont {
	max-width: 900px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.content::after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.h2 {
	line-height: 1.8;
	font-size: 22px;
	border-bottom: solid 1px #4CAF50;
	color: #4CAF50;
	font-weight: bold;
	margin-left: 50px;
}

.operation{
margin: 30px auto 20px auto;
	width: 1100px;		
}

.operation p {
	line-height: 1.8;
	font-size: 20px;
	margin: 0 auto;
}
.operation ul{
margin: 0 auto;
width: 900px;
}
.operation ul li{
padding-left: 0.1em;
text-indent: -0.1em;
font-size: 20px;
list-style-type: disc;
line-height: 2em;
padding-bottom: 10px;
}

.alignleft{
float:left;
margin:3px auto 30px auto;
overflow: hidden;
padding-left: 150px;
}

.alignleft p{
font-size: 16px;
line-height: 1.7em;
margin-left: 200px;
	}

.grid{
clear:both;
float: right;
}

.grid ul{
list-style: none;
margin-left: 30px;
margin-top: -8px;
}

.grid li{
padding:5px 0;
list-style: none;
line-height: 1.5em;
}
.grid ul span{
	font-size: 16px;
	color: #4CAF50;
}

.grid3{
float:left;
}

.grid3 ul{margin:10px 0 5px 0;
}

.grid3 li{
padding:0px ;
list-style: none;
}

.grid3 p{
font-size: 16px;
line-height: 1.7em;
margin-left: 50px;
}

/* グリッド */
.col2{width:116px;
}
.col3{width:750px;
}
.operation-title {
    color: #4CAF50;
    font-size: 2.4rem;
    text-align: center; 
	border: solid 1px #4CAF50;
	width: 60%;
	margin: 50px auto 15px auto;
	padding: 10px;
}

.operation-subtitle {
    color: #4CAF50;
    font-size: 2rem;
	text-align: center;
	margin: 50px auto 30px auto;
	overflow: hidden;
	
}
/*
2列ボックス
-------------------------------------------*/
.box_flex {
	display: block;
	margin-left: auto;
	margin-right: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	max-width: 1400px;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 20px;
}
.box_flex {
margin: 0 auto;
}
.box_flex .box_2l {
	text-align: center;
	width: 50%;
}
.box_flex .box_2l .box {
	text-align: center;
	width: 95%;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	background: #C7E4D1;
	margin-top: -100px;
}
.box_flex .box_2l .box2 {
	text-align: center;
	width: 95%;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	background: #F9C6C6;
	margin-top: -100px;
}

.box_flex .box_2l h3 {
	top:20px;
	font-size: 28px;
	line-height: 30px;
	font-weight: bold;
	background-color: #FFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	position: relative;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	color: #111;
	clear: both;
	margin-top: 80px;
	margin-right: 25px;
	margin-bottom: 30px;
	margin-left: 25px;
}
.box_flex .box_2l p {
	top:20px;
font-size: 20px;
	line-height: 2em;
	padding: 10px 20px;
	text-align: left;
}

/* スマホ用のメディアクエリ改善 */
@media (max-width: 768px) {
    .hero-visual {
        min-height: 250px; /* ← 必要なら少しだけ小さくする */
        padding: 20px 0;
    }	
}

@media (max-width: 480px) {
    .hero-visual {
        min-height: 220px;/* ← 小さくしすぎないように */
        padding: 15px 0;
    }
}

.hero-visual .speech-bubbles {
    z-index: 0; /* 背景側に送る */
    /* position: absolute;*/
    /* width: 100%;*/
    /* height: 100%;*/}


.hero-visual .bubble {
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 20px;
    padding: 8px 12px; /* Adjusted for smaller screens */
    position: absolute;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem; /* Adjusted for smaller screens */
    text-align: center;  /* ← 左右中央揃え */
}

.hero-visual .bubble-top-right {
    top: 15%;
    right: 5%;
    transform: translateX(-50%);
}

.hero-visual .bubble-top-left {
    top: 25%;
    left: 5%;
    transform: translateX(50%);
}

.hero-visual .bubble-bottom-right {
    bottom: 15%;
    right: 10%;
    transform: translateX(-50%);
}

.hero-visual .bubble img {
    width: 60px; /* Adjusted for smaller screens */
    height: auto;
    margin-top: 5px;
}

.hero-visual .people-with-phones img {
    width: 1200px; /* 適度に大きく */
    max-width: 90%; /* Adjusted for smaller screens */
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* 吹き出しより前面に */
}

/* スマート町会掲示板とは　説明文セクション */
.about-us { 
    text-align: center; 
    padding: 20px 15px;
    background-color: transparent; 
    margin-bottom: 30px; 
}

/*.about-us h2 {
    color: #4CAF50;
    font-size: 2.4rem;
    margin-bottom: 15px;
}*/

.section-title {
    color: #4CAF50;
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-align: center; 
	margin-top: 30px;
}


.about-us .speech-bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 5px; 
  max-width: 1000px; 
  margin: 20px auto;
  margin-bottom: 20px;
  justify-items: center; 
}

.about-us .bubble {
  width: 300px;   
  margin: 0;               
  background-color: white; 
  border: 2px solid #ccc; 
  border-radius: 20px;
  padding: 15px; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box; 
}

.about-us .bubble p {
    margin: 0; 
}

.about-us .bubble img {
    max-width: 100%; 
    height: auto; 
    margin-top: 10px; 
}

.about-us .description,
.community-collaboration .description {
  margin-bottom: 20px; 
  text-align: center;  
  font-size: 1rem;
  line-height: 1.6;
margin-top: 30px;
}

.about-us .bubble.no-border {
  border: none;
  box-shadow: none; 
}

@media (max-width: 768px) {
.about-us .speech-bubbles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-us .speech-bubbles {
    grid-template-columns: 1fr;
  }
}


/* service-grid (「主なサービスメニュー」内の画像グリッド) */
/* ここを修正します */

.support-grid {
  display: flex;
  justify-content: center;
  column-gap: 40px; 
  row-gap: 20px;  
  flex-wrap: wrap; 
}

/* service-grid 専用設定（70%に縮小） */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
    width: 70%; 
    height: 70%;
    margin-left: auto;
    margin-right: auto;
 /*  margin: 0 auto; こちらでもいい */
}

.service-item h3,
.service-item p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* 画面幅が481px以上の場合 (中画面: 2列) */
@media (min-width: 481px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .support-grid {
   display: flex;
   justify-content: center;
   gap: 30px;
   flex-wrap: wrap; 
  }
}

/* 画面幅が769px以上の場合 (PC: 3列) */
@media (min-width: 769px) {
  .service-grid {
  grid-template-columns:repeat(3, 1fr);
    gap: 15px;
  }
/*  .support-grid {
    flex-direction: column;
    align-items: center;*/

  }


/* 画像サイズ */
.support-item {
　　width: 350px;
   box-sizing: border-box;
   text-align: center;
   border: none;
}
.support-item h3{
font-size: 26px;
padding-bottom: 5px;
}

.support-item img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.service-item { 
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.service-item h3{
	font-size: 26px;
	padding-bottom: 5px;
}
.service-item img{
border: 1px solid #666;
}

.service-item .my-image {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}


/* 「主なサービスメニュー」内の画像枠 */
.main-services .service-item {
    border: 1px solid #ddd; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.main-services {
  min-height: 600px; 
  position: relative;  
  z-index: 2; 
}


/*地域とさまざまな連携 */

.community-collaboration {
  margin-top: 50px; 
  position: relative;
  z-index: 1; 
}

.collaboration-examples {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 15px; /* Adjusted for smaller screens */
}

.collaboration-examples p {
    background-color: #e0f2f1;
    border: 1px solid #b2dfdb;
    border-radius: 10px;
    padding: 12px; /* Adjusted for smaller screens */
    margin: 8px; /* Adjusted for smaller screens */
    flex: 1;
    min-width: 200px; /* Adjusted for smaller screens */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem; /* Adjusted for smaller screens */
}

/* scene-with-phones.pngのレスポンシブ対応 */
.community-collaboration .people-with-phones img {
    max-width: 100%; 
    height: auto;
    display: block;
    margin: 0 auto; 
}
/* scene-with-phones.pngのレスポンシブ対応 */
.people-with-phones2 img {
    width: 65%; /*max-width100%*/
    height: auto;
    display: block;
    margin: 0 auto; 
}

/* メニュー別の機能*/
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px; /* Adjusted for smaller screens */
    font-size: 0.9rem; /* Adjusted for smaller screens */
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px; /* Adjusted for smaller screens */
    text-align: left;
}

table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

table td:first-child {
    font-weight: bold;
}

/*地域とのさまざまな連携のテーブル*/

table.table1 {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    background: #fff;
    border: none;
}
table.table1 td {
    display: block; /* セルをブロック要素に指定 */
    width: 100%; /* セルを親要素いっぱいの幅に指定 */
    border: none;
    font-size: 14px;   
    padding: 10px;
    vertical-align: top;
    text-align: left;
    box-sizing: border-box;
}
table.table1 td img a:hover{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}

@media screen and (min-width: 768px) {
table.table1 {
margin: 0 auto;
width: 90%;
}
table.table1 td {
 display: table-cell; /* デフォルト値に指定 */
margin: 0 auto;	 
color: #000;
background: #fff;
text-align: center；
    }
    }

.note {
    font-size: 0.8rem; /* Adjusted for smaller screens */
    color: #666;
    margin-top: 10px; /* Adjusted for smaller screens */
    text-align: right;
}
/*詳細ボタン*/
.shosai {
	position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 50px;
	padding-bottom: 50px;
	max-width: 1000px; 
	margin:0 auto;
}
.shosai .btn_contact a {
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #FFF;
	color: #FF6600;
	border:1px solid #FF6600;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	font-size: 30px;
	line-height: 30px;
	text-decoration: none;
	font-weight: 600;
	width: 90%;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
}
.shosai .btn_contact a:hover{
background-color:#FF6600;
color: #fff;
}

.shosai.btn_contact a i {
	padding-right: 10px;
}


/* フッター*/

footer {
	background-color: #00984b;/*#009933*/
	color: #FFF;
	clear: both;
	width: 100%;
	display: block;
	height: auto;
}

footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	text-decoration: underline;
	color: #FFF;
}
footer .line{
border-bottom: solid 1px #FFF;	
}

footer .f_info {
	padding: 20px;
	height: 170px;/*150*/
}

footer .f_info .right{
margin-left: 80px;
float: left;
margin-top: 10px;
}

footer .f_info .left{
margin-left: 80px;
float: left;
margin-top: 0px;
flex-wrap:wrap;/* これを指定する */
width: 750px;
}


footer .f_info .left p {
	float: left;
　　text-align: left;
	overflow: hidden;
	margin-top: 10px;
	line-height: 2em;
}


footer .f_info img {
	float: left;
}

.f_copyright {
	clear: both;
	font-size: 14px;
	padding: 20px 20px 50px 20px;
	color: #FFF;
	height: 80px;
	vertical-align: middle;
	text-align: center;
}

.box-parent {
  width:100%;
  height:auto;
  display:flex;
  flex-wrap:wrap;/* これを指定する */
  justify-content:space-between;
  margin-top: 10px;
}

.box-child {
  width:calc(100%/3);/* 横幅を3等分 */
  height:auto;
  display:flex;/* 高さを揃えるための指定 */
  flex-direction:column;/* 高さを揃えるための指定 */
  box-sizing:border-box;/* 装飾用 */
}


/*トップボタン*/

#to_top {
	position: fixed;
	bottom: 30px;/*10*/
	right: 30px;
	z-index: 200;
}
#to_top a {
	text-decoration: none;
	text-align: center;
	display: block;
	width:50px;
	height:50px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	padding-top: 15px;
	background-color: #4CAF50;
}
#to_top a:hover,
#to_top a:hover img {
	background-color: #4CAF50;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .hero-visual {
        min-height: 200px;
    }

    .hero-visual .bubble {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .hero-visual .bubble img {
        width: 50px;
    }

    .hero-visual .people-with-phones img {
        max-width: 90%; 
    }

    .community-collaboration .people-with-phones img {
    max-width: 90%; 
    }
 .people-with-phones2 img {
    width: 90%; 
    }
    h2 {
        font-size: 1.4rem;
    }

    .service-item, .support-item {
        padding: 12px;
    }

.service-item h3{
    font-size: 24px;
padding-bottom: 5px;
    }/*font-size: 1rem*/
	
.support-item h3{
font-size: 24px;
padding-bottom: 5px;
}
    .collaboration-examples p {
        min-width: 180px;
        padding: 10px;
        font-size: 0.85rem;
    }

    table {
        font-size: 0.8rem;
    }

    table th, table td {
        padding: 6px;
    }

    .note {
        font-size: 0.75rem;
    }
	
.main_cont {
	width: 90%;
}
.col3{width:500px;
}

}

/*-----ここから/1100-----*/


@media screen and (max-width:1100px) {
	
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
	margin-left: auto;
	margin-right: auto;
}
#to_top {
	bottom: 10px;
	right: 10px;
	}

}

@media screen and (min-width:1100px) {

/*
ヘッダー
-------------------------------------------*/
header {
	height:80px;
}

header h1 {
	left: 20px;
	top: 15px;
}
/*
.sp_menu,
.menu_btn,
.close_btn {
	display: none;
}*/
/*	.sp{
        display: none;
    }*/
}

@media screen and (min-width:960px){
.menu_btn,
.btn_close {
	display: none;
}/*2000*/
}
/*
@media screen and (max-width:2000px){

#g_navi {
	position: fixed;
	width: 20%;
	height: 100%;
	top: 0px;
	left: 80%;
	display: none;
	padding-top: 110px;
	overflow: auto;
	z-index: 3000;
	background-color: #FFF;
	font-size: 14px;
	letter-spacing: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#g_navi ul {
	display: block;
	margin: 0px;
	padding: 0px;
	clear: both;
}

#g_navi ul li:first-child {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #EEE;
}

#g_navi ul li {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EEE;
}

#g_navi ul li a {
	color: #111;
	text-decoration: none;
	display: block;
	padding-top: 16px;
	padding-right: 30px;
	padding-bottom: 14px;
	padding-left: 20px;
	line-height: 22px;
	vertical-align: middle;
}
#g_navi ul li a:hover {
	color: #FFF;
	background-color: #00984b;
	}


/*
メニューボタン
-------------------------------------------*/

.menu_btn {
	display: block;
	height: 30px;
	width: 40px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	position: fixed;
	z-index: 5000;
	top: 15px;
	right: 5px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	background-color: #FFF;
}
.menu_btn:hover {
	cursor: pointer;
}

.menu_btn span {
	width: 28px;
	height: 2px;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -14px;
	background-color: #555;
}
.menu_btn span {
    transition: all 0.3s;
    transform: rotate(0deg);
	-webkit-transform: rotate(0deg);  
    -moz-transform: rotate(0deg);    
  }
.menu_btn span.top {
    transform: translateY(-8px);
	-webkit-transform: translateY(-8px);  
    -moz-transform: translateY(-8px);    
  }
.menu_btn span.bottom {
    transform: translateY(8px);
	-webkit-transform: translateY(8px);  
    -moz-transform: translateY(8px);    
}


.menu_btn:hover span.top {
    transform: translateY(-10px);
	-webkit-transform: translateY(-10px);  
    -moz-transform: translateY(-10px);    
}
.menu_btn:hover span.bottom {
    transform: translateY(10px);
	-webkit-transform: translateY(10px);  
    -moz-transform: translateY(10px);    
}


.menu_btn.opened  span.middle {
    background: rgba(255, 255, 255, 0);
	 transform: translateX(30px);
	 -webkit-transform: translateX(30px);  
    -moz-transform: translateX(30px);    
}
.menu_btn.opened  span.top {
    transform: rotate(-45deg) translateY(0px);
	-webkit-transform: rotate(-45deg) translateY(0px);  
    -moz-transform: rotate(-45deg) translateY(0px);    
}
.menu_btn.opened  span.bottom {
    transform: rotate(45deg) translateY(0px);
	-webkit-transform: rotate(45deg) translateY(0px);  
    -moz-transform: rotate(45deg) translateY(0px);    
}
}


@media screen and (min-width:2000px){

header #g_navi {
	right: 50%;
	margin-right: -600px;}
}


@media screen and (max-width:960px){
	/*
メニューボタン
-------------------------------------------*/
/*
#g_navi {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	display: none;
	padding-top: 110px;
	overflow: auto;
	z-index: 3000;
	background-color: #FFF;
	font-size: 14px;
	letter-spacing: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#g_navi ul {
	display: block;
	margin: 0px;
	padding: 0px;
	clear: both;
}

#g_navi ul li:first-child {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #EEE;
}

#g_navi ul li {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EEE;
}

#g_navi ul li a {
	color: #111;
	text-decoration: none;
	display: block;
	padding-top: 16px;
	padding-right: 30px;
	padding-bottom: 14px;
	padding-left: 20px;
	line-height: 22px;
	vertical-align: middle;
}
#g_navi ul li a:hover {
	color: #FFF;
	background-color: #009933;
}
@media screen and (min-width:1200px){

header #g_navi {
	right: 50%;
	margin-right: -600px;}
}
*/

/*
メニューボタン
-------------------------------------------*/
/*
.menu_btn {
	display: block;
	height: 30px;
	width: 40px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	position: fixed;
	z-index: 5000;
	top: 15px;
	right: 5px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	background-color: #FFF;
}
.menu_btn:hover {
	cursor: pointer;
}

.menu_btn span {
	width: 28px;
	height: 2px;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -14px;
	background-color: #555;
}
.menu_btn span {
    transition: all 0.3s;
    transform: rotate(0deg);
	-webkit-transform: rotate(0deg);  
    -moz-transform: rotate(0deg);    
  }
.menu_btn span.top {
    transform: translateY(-8px);
	-webkit-transform: translateY(-8px);  
    -moz-transform: translateY(-8px);    
  }
.menu_btn span.bottom {
    transform: translateY(8px);
	-webkit-transform: translateY(8px);  
    -moz-transform: translateY(8px);    
}


.menu_btn:hover span.top {
    transform: translateY(-10px);
	-webkit-transform: translateY(-10px);  
    -moz-transform: translateY(-10px);    
}
.menu_btn:hover span.bottom {
    transform: translateY(10px);
	-webkit-transform: translateY(10px);  
    -moz-transform: translateY(10px);    
}


.menu_btn.opened  span.middle {
    background: rgba(255, 255, 255, 0);
	 transform: translateX(30px);
	 -webkit-transform: translateX(30px);  
    -moz-transform: translateX(30px);    
}
.menu_btn.opened  span.top {
    transform: rotate(-45deg) translateY(0px);
	-webkit-transform: rotate(-45deg) translateY(0px);  
    -moz-transform: rotate(-45deg) translateY(0px);    
}
.menu_btn.opened  span.bottom {
    transform: rotate(45deg) translateY(0px);
	-webkit-transform: rotate(45deg) translateY(0px);  
    -moz-transform: rotate(45deg) translateY(0px);    
}*/
.col3{width:500px;
}	
	}
@media screen and (max-width:960px){
#g_navi {
width: 100%;
left: 0px;
}
#left img{
padding: 0px;
padding-left: 0px;
width: 30%;
}
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    .hero-visual {
        min-height: 180px;
    }

    .hero-visual .bubble {
        padding: 5px 8px;
        font-size: 0.7rem;
        border-radius: 15px;
    }

    .hero-visual .bubble-top-right {
        top: 10%;
        right: 0%;
    }

    .hero-visual .bubble-top-left {
        top: 20%;
        left: 0%;
    }

    .hero-visual .bubble-bottom-right {
        bottom: 10%;
        right: 5%;
    }

    .hero-visual .bubble img {
        width: 40px;
    }

    .hero-visual .people-with-phones img {
        max-width: 90%;
    }

    .community-collaboration .people-with-phones img {
        max-width: 90%; 
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    .collaboration-examples {
        flex-direction: column;
        align-items: center;
    }

    .collaboration-examples p {
        width: 90%;
        min-width: unset;
        margin: 5px 0;
    }

    table {
        font-size: 0.75rem;
    }
}
@media screen and (max-width:759px){
.main_cont {
	width: 100%;
}	
.operation{
	width: 100%;		
	}
.operation p {
font-size: 16px;
	width: 90%;
	line-height: 1.7em;
}

.section-title {
    font-size:22px;
	margin-top: 30px;
}
.operation-title {
width: 90%;
font-size:24px;
}
	
.operation-subtitle {
width: 90%;
font-size:24px;
margin: 0 auto;
padding-top: 30px;
}
		
.about-us { 
text-align: center; 
padding: 10px 15px;
background-color: transparent; 
margin-bottom: 10px; 
}
.about-us .description p {
margin-bottom: 10px; 
margin-top: 10px;
text-align: left;
font-size: 14px;
line-height: 2em;
}	
.about-us .speech-bubbles {
  margin: 10px auto;
  margin-bottom: 10px;
}
.community-collaboration {
  margin-top: 30px; 
}
.about_locohub p{
font-size:16px;
line-height: 1.7em;
}
.about_locohub ul{
font-size: 16px;
}
.about_locohub ul li{
	margin-left: 24px;
	text-indent: 5px;
	padding-bottom: 15px;
	padding-left: 0.1em;
	text-indent: -0.0em;
	line-height: 1.7em;
	}
.about_locohub h4{
font-size:18px;
}
.sp_br {
display: none;
  }
.shosai .btn_contact a {
font-size: 26px;
margin-top: 10px;
margin-bottom: 10px;
}
	
.shosai {
    padding-top: 20px;
	padding-bottom: 20px;
}
	

	
/*サービスサイトボタン*/
.servicesite{
    padding-top: 10px;
	padding-bottom: 20px;
}
.servicesite .btn_servicesite a {
font-size: 23px;
padding-top: 7px;
padding-bottom: 10px;
text-align: center;
width: 65%;
margin: 0 auto 0px auto;
vertical-align: middle;
text-indent: -0.5em;
}
	
.community-collaboration {
  margin-top: 30px; 
}
.people-with-phones img {
  max-width: 90%;
    }

.people-with-phones2 img {
  width: 90%;
    }
	
.renkei-menu img {
  max-width: 90%;
    }
.alignleft{
 float:none;
 display:block;
margin:0px auto 30px auto;
width: 90%;
padding: 10px;
	}

.alignleft img{
float:none;
 display:block;
 height: auto;
margin: 0 auto;
	}
	
.alignleft .h2{
 float:left;
width: 100%;
margin: 10px auto;
text-align: center;
	}
	
.alignleft p{
 float:left;
width: 100%;
	margin: 10px auto;
	}
	
	
.grid{width:100%;
	float: none;
	margin: 10px auto 30px;
	padding-left: 30px;}

.grid3{width:100%;
	float: none;
	margin: 0 auto;}
	
.grid3 img{
float:none;
 display:block;
 height: auto;
margin: 0 auto;
	}
.grid3 .h2{
margin: 10px auto;
text-align: center;
	width: 85%;
	}
.grid3 p{
margin: 10px auto;
	width: 85%;
}
.regionel {
width: 90%;
}
.regionel img {
	padding:0px 20px 20px 20px;
}
.regionel h3 {
font-size: 20px;
padding:5px;
}
.service {
width: 90%;
}
.service .midashi {
font-size: 20px;
}
.service .midashi span {
font-size: 16px;
line-height:1.5em;
}
.service img {
width: 100%;
padding: 0;
}
.about_locohub{
width: 90%;
}
.about_locohub img{
width: 100%;
padding: 0;
}	
.about_locohub h3{
font-size:18px;
margin: 0 auto 20px auto;
line-height: 1.7em;
padding: 0 ;
}
.about_locohub2{
width: 90%;
}
.about_locohub2 img{
width: 100%;
margin-top: 30px;
margin-bottom: 20px;
padding: 0;
}
.about_locohub2 h3{
font-size:18px;
line-height: 1.7em;
margin: 0px auto 30px auto;
text-align: left;
	}
.about_locohub2 h3 br { display: none; }


.about_locohub2 p{
font-size:16px;
line-height: 1.7em;
margin: 30px auto 20px auto;
text-align: left;
}
.about_locohub2 p br{display: none;}
	
.about_locohub2 .co{
	font-size: 24px;
	}
.about_locohub2 .ad{
	font-size: 17px;
	line-height: 1.7em;
	}	
header .logo img{
width: 100%;
margin-top: 5px;
}

header .top_logo img{
width: 80%;
margin-top: 5px;
padding-right: 25px;
}
.box_flex {
	width: 100%;
	height: auto;
	margin-top: -100px;
}
.box_flex .box_2l {
	width: 100%;
	height: auto;
	margin-top: -20px;
}
.box_flex .box_2l .box {
	width: 95%;
	margin: 0 auto;
}
.box_flex .box_2l .box2 {
	width: 95%;
	margin: 0 auto;
}
.operation ul{
margin: 0 auto;
width: 90%;
}
.operation ul li{
margin-left: 20px;
font-size: 16px;
}

}
	
@media (min-width:750px){
    .sp{
        display: none;
    }
}
@media (max-width:749px){
    .pc{
        display: none;	
    }
	
.grid3{width:100%;
	float: none;
	margin: 0 auto;}
	
.grid3 img{
float:none;
 display:block;
 height: auto;
margin: 0 auto;
	}
.grid3 .h2{
margin: 10px auto;
text-align: center;
	width: 85%;
	}
.grid3 p{
margin: 10px auto;
	width: 85%;
}
	/*
フッター
-------------------------------------------*/
.footer_cont_wrap{
		width: 100%;
		margin: 0 auto;
	}
footer .f_info {
	padding: 10px;
	height: auto;
margin: 0 auto;
}

footer .f_info p {
	display: block;
}
	
footer .f_info .right{
float: none;
margin: 20px auto 10px auto;
}
footer .f_info .right img{
width: 95%;
}

footer .f_info .left{
float: none;
margin: 20px auto 10px auto;
width: 100%;
}
	

footer .f_info img {
	float: none;
	display: block;
	margin: auto;
}
/*フッターメニュー2列*/	
.box-child {
 width:calc(100%/2);/* 横幅を2等分 */
 height:auto;
font-size: 14px;
	padding-left: 10px;
	line-height: 1.7em;
	overflow: hidden;
}
.box-parent{
width: 100%;
margin: 0 auto;
	}
	
table.table1 {
margin: 0 auto;
width: 80%;
}

table.table1 td img{
margin: 0 auto;
width: 90%;
padding: 0;
}
}


#mailform table.table_form th {
  text-align: right;
}
#mailform table.table_form td {

}
form input.form_btn {
  background-color: #F60;
}


/* 追加部分　追加部分　追加部分　追加部分　追加部分

テーブル
-------------------------------------------*/

table {
	border-collapse: collapse;
}
table td {
	border-collapse: collapse;
}

.content table.table_01,
#mailform table.table_form {
	width: 98%;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}
.content table.table_01 th,
.content table.table_01 td {
	padding: 30px;
	font-size: 14px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E3E3E3;
}
.content table.table_01 th {
	background-color: #F9F9F9;
	color: #00365E;
	letter-spacing: 2px;
}

#mailform table.table_form th {
	text-align: right;
	border-right-width: 4px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: dotted;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	font-size: 14px;
	font-weight: normal;
	padding: 20px;
	background-color: #F9F9F9;
}
.content #mailform table.table_form th p {
	font-size: 10px;
	line-height: 14px;
	color: #999;
	margin: 0px;
	padding: 0px;
}
span.required {
	display: inline-block;
	margin-left: 5px;
	color: #FFF;
	background-color: #FF5B33;
	font-size: 12px;
	line-height: 24px;
	padding-right: 5px;
	padding-left: 5px;
}
#mailform table.table_form td {
	padding: 20px;
	background-color: #FFF;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	border-bottom-width: 1px;
	font-size: 14px;
}
form input.form_btn {
	background-color: #F60;
	color: #FFF;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border: 3px solid #EEE;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
	font-size: 18px;
	line-height: 24px;
}
form input.form_btn:hover {
	background-color: #FFF;
	color: #F60;
	border-top-color: #F60;
	border-right-color: #F60;
	border-bottom-color: #F60;
	border-left-color: #F60;
	cursor: pointer;
}
form input.form_btn_gr {
	background-color: #555;
	color: #FFF;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border: 3px solid #EEE;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
	font-size: 14px;
	line-height: 24px;
}
form input.form_btn_gr:hover {
	background-color: #FFF;
	color: #555;
	border-top-color: #555;
	border-right-color: #555;
	border-bottom-color: #555;
	border-left-color: #555;
	cursor: pointer;
}


@media screen and (min-width:1800px) {

.top_form {
	top: 30%;
	left: 15%;
}

}

@media screen and (min-width:1100px) {





/* CSSここまで*/