@charset "utf-8";


/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

/*ol, ul {list-style: none;}*/
table {border-collapse: separate;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img{border: 0;}
figure{margin:0}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
/* -------------------------------------------------------------- */

html, body {
	height: 100%;
	margin: 0;
}
body {
  min-height: 100vh;
  font-family: sans-serif;

  background-image: url("images/IT4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed;
}
/* 全体を中央に配置 */
.wrap {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}
p{
	line-height: 1.2;
	text-align: left;
}
/* 白いボックス */
.box {
  background: #fff;
  padding: 40px 60px;
  border-radius: 12px;
  max-width: 900px;
}

/* 各行 */
.line {
  position: relative;
  padding-left: 2em; /* 一. の分だけ余白 */
  margin: 18px 5px;

  font-weight: bold; /* 太字なし */
  font-size: 23px;
  line-height: 1.0;
}

/* 左の「一.」を揃える */
.line::before {
  content: "一.";
  position: absolute;
  left: 0;
  top: 0;
}

#header {
	top: 0;
	left: 0;
	width: 100%;
}
.nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo img {
	width: 500px;
}

#header .logo img {
	width: 500px;
	height: auto;
	display: block;
}

#wrapper video {
	width: 1000px;
	height: auto;
}

#footer-top .logo img {
	width: 400px;
	height: auto;
	display: block;
}



.menu-btn {
	position: absolute;
	top: 30px;
	right: 40px;

	width: clamp(28px, 5vw,40px);
	cursor: pointer;
	z-index: 2000;
}

.menu-btn span {
	display: block;
	height: 4px;
	background: #000;
	margin: 6px 0;
	border-radius: 10px;
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: rgba(0,0,0,0.92);

  display: flex;
  justify-content: flex-end;
  align-items: center;

  padding-right: 100px;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 1500;
}

.fullscreen-menu.active {
	opacity: 1;
	visibility: visible;
}

.fullscreen-menu ul {
	list-style: none;
	text-align: right;
}

.fullscreen-menu li {
	margin: 25px 0;
}

.fullscreen-menu a {
	color: white;
	text-decoration: none;
	color: #333;
	font-size: 28px;
	font-weight: bold;
	transition: 0.3s;
}

.fullscreen-menu a:hover {
	color: #ffffff;
}
/* ヒーロー */
.hero {
  text-align: center;
}
.hero h1 {
	margin-bottom: 0;
}

.video {
  margin-top: 20px;
  display: flex;
  justify-content: center;

}

.video iframe {
  width: 80%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.map {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.map iframe {
	width: 100%;
	height: 600px;
	border: 0;
}

#mainBanner {
  text-align: center;  /* 文字・インライン要素を中央 */
  margin: 0 auto;
}
.red {
	color: #e53935;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}

h1 {
	font-size: 40px;
}

h4 {
	font-size: 30px;
	text-align: center;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 33px;
}

.news {
	padding: 80px 10%;
}
.topics {
	padding: 80px 10%;
}

.section-title {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 3px;
	border-left: 5px solid #4fc3f7;
	padding-left: 15px;
}

.section-subtitle {
	color: #666;
	margin-bottom: 40px;
}

.news-item {
	display: flex;
	gap: 30px;
	padding: 20px 0;
	border-bottom: 1px solid #ccc;
}

.topics-item {
	display: flex;
	gap: 30px;
	padding: 20px 0;
	border-bottom: 1px solid #ccc;
}

.news-date {
	color: #4fc3f7;
	font-weight: bold;
	min-width: 120px;
}
.topics-date {
	color: #4fc3f7;
	font-weight: bold;
	min-width: 120px;
}

.news-text {
	margin: 0;
}
.topics-text {
	margin: 0;
}

.check {
	margin-bottom: 16px;
	text-align: left;
}
.check-list {
	margin-top: 10px;
}

.check::before {
	content:"✔ ";
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 20px;
	height: 20px;

	margin-right: 8px;

	background: #7fd4e6;
	color: white;
	border-radius: 50%;
	font-size: 12px;
}

a img {
	transition: 0.3s;
}

a img:hover {
	opacity: 0.8;
	transform: scale(1.03);
}


.section h2 {
	font-size: 40px;
}

.section p {
	font-size: 22px;
}

.right-text {
	text-align: right;
}

.content-box {
	/*レイアウト*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	/*spacing*/
	margin: 40px auto;
	padding: 30px;
	/*見た目*/
	background: #F7FBFD;
	border: 1px solid #CFE3EC;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(223, 223, 223, 0.08);
	/*サイズ・配置*/
	max-width: 1000px;
	box-sizing: border-box;
}
.content-inner {
	text-align: left;
	align-items: center;
	max-width: 600px;
}
.content-img {
	display: flex;
	gap: 20px;
	align-items: center;
	margin: 0 auto;
	flex: 1;
}
.content-img img {
	width: 105px;
	height: auto;
	object-fit: cover;
	border-radius: 8px;
	object-fit: cover;
}
.content-inner.business-inner {
	display: flex;
	align-items: center;
	gap: 40px;
}

.content-box.news-box {
	align-items: flex-start;
	flex-direction: column;
}
.content-box.topics-box {
	align-items: flex-start;
	flex-direction: column;
}
.content-box.business-box {
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-box.our-box {
	max-width: 725px;
	height: auto;
	display: flex;
	justify-content: left;
	align-items: left;	
}
.content-box.type3 {
	display: flex;
	justify-content: center;
	font-size: 20px;
}
.type3 .content-inner {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	max-width: 900px;
}
.type3 .content-text {
	text-align: center;
}
.content-box.type6 {
	display: flex;
	justify-content: center;
}
.type6 .content-inner {
	display: flex;
	align-items: flex-start;
	gap: 90px;
	max-width: 900px;
}
.type6 .content-img img {
	width: 100%;
	height: auto;
	display: block;
}
.type6 .content-text {
	text-align: left;
}

.content-box.type7 {
	display: flex;
	justify-content: left;
}
.type7 .content-inner {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	max-width: 900px;
}
.type7 .content-img img {
	display: flex;
	gap: 10px;
}
.type7 .content-text {
	text-align: left;
}

.content-box.type8 {
	display: flex;
	justify-content: center;
	
}
.type8 .content-inner {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	max-width: 900px;
}
.type8 .content-img img {
	width: 100%;
	height: 100%;
	max-height: 500px;
	display: block;
}

.type8 .content-text {
	text-align: left;
	font-size: 16px;
}


.content-text.news-text {
	text-align: left;
}
.content-img.right-top {
	position: absolute;
	top: 20px;
	right: 20px;
}
.content-img.right-top img {
	width: 150px;
	height: auto;
}
.content-text.our-text {
	text-align: left;	
}


.content-text {
	flex: 1;
	min-width: 0;
}
.content-text.business-text {
	text-align: center;
}

.content-text ul{
	padding-left: 20px;
}

.content-text li{
	margin-bottom: 16px;
	line-height: 1.2;
}

.content-img .img-large {
	display: block;
	width: 100%;
	max-width: 425px;
	height: auto;
}
.content-img .img-biglarge {
	flex-shrink: 0;
	width: 500px ; 
	height: auto;
	
}
.content-img .img-biglarge1 {
	width: 100%;
	max-width: 450px;
	height: auto;
}
.content-img .img-small {
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
}
.content-img .img-small1 {
	display: flex;
	gap: 10px;
}
.content-box.history-box {
	justify-content: flex-start;
}
.history {
	text-align: left;
}
.history div{
	padding: 8px 0;
	border-left: 3px solid #aaa;
	padding-left: 10px;
}

.modal {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	inset: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);

	display: none;

	z-index: 999;
}

.modal-content {
	position: relative;
	background: white;
	width: 90%;
	max-width: 1100px;
	height: 85vh;
	margin: 10% auto;
	padding: 30px;
	border-radius: 8px;
	overflow-y: auto;
}
.modal-content h2 {
	font-size: 42px;
    margin-bottom: 40px;
}
.modal-content h5 {
    font-size: 28px;

    border-bottom: 3px solid #39b5d6;

    padding-bottom: 10px;
    margin-bottom: 20px;
}
.modal-content p {
    line-height: 2;
    color: #555;
}

.modal1 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.modal2 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.modal3 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}


.close {
	float: right;
	cursor: pointer;
	font-size: 24px;
}

/* グリッド */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}
.container.type2 .card{
	font-size: 25px;
	color: #4fc3f7;
}

/* メイン */

/* カード（リンク） */
.card {
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  text-align: center;

  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px;

  transition: 0.3s;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
  color: #007bff;
}

.card-title {
	font-size: 28px;
	line-height: 1.5;
	word-break: keep-all;
}

.photo{
	width: 200px;
	height: 200px;

	object-fit: contain;

	display: block;
	margin: 0 auto;
}

.mb {
	margin-bottom: 20px;
}

.top-btn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	padding: 10px 15px;
	border-radius: 50%;
	color: #000;
	border: none;
	cursor: pointer;
}

/* =========================
   フッター全体
========================= */
#footer {
  color: #555;
}


/* 内側余白 */
#footer .inner {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   上段（ロゴ + info）
========================= */
#footer .top {
	width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

/* ロゴ */
#footer .logo {
  font-size: 5px;
}

/* info */
#footer #info .info {
  text-align: right;
  font-size: 12px;
  line-height: 1.6;
  margin-left: auto;
}

/* =========================
   中段ナビ
========================= */
ul.footnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  list-style: none;
  padding: 10px;
  margin: 0 10px 30px;
}

ul.footnav li {
  padding: 0 10px;
  border-right: 1px solid #ddd;
}

ul.footnav li:last-child {
  border-right: none;
}

ul.footnav a {
  color: #555;
  text-decoration: none;
}

ul.footnav a:hover {
  color: #999;
}

/* =========================
   下段コピーライト
========================= */
#copyright {
  text-align: center;
  font-size: 10px;
  color: #777;
}

/* page navigation
------------------------------------------------------------*/
.pagenav{
clear:both;
width:100%;
height:30px;
margin:5px 0 20px;
}

.prev{float:left}
.next{float:right;}

#pageLinks{
clear:both;
text-align:center;
}


/* タイポグラフィ
*****************************************************/
.dateLabel{
margin:0 0 10px;
text-align:right;
font:italic 1em "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.post p{padding-bottom:10px;}

.post ul{margin:0 0 10px 10px;}

.post ul li{
margin-bottom:5px;
padding-left:15px;
background:url(images/bullet.png) no-repeat 0 8px;
}

.post ol{margin:0 0 10px 30px;}

.post ol li{list-style:decimal;}

.post h1{
margin:20px 0;
padding:5px 0;
font-size:150%;
color:#000;
border-bottom:3px solid #cf6a88;
}

.post h2{
margin:10px 0;
padding-bottom:2px;
font-size:130%;
font-weight:normal;
color:#333;
border-bottom:2px solid #cf6a88;
}

.post h3{
margin:10px 0 25px 0;
padding:10px 0 10px 0;
font-size:120%;
font-weight:normal;
border-bottom:1px solid #ddd;
}

.post blockquote{
clear:both;
padding:10px 0 10px 15px;
margin:10px 0 25px 30px;
border-left:5px solid #ccc;
}
 
.post blockquote p{padding:5px 0;}

.post table{
border-collapse:collapse;
margin:5px auto 15px auto;
}

.post table td{
border-collapse:collapse;
background-color:#F9F9F9;
text-align:left;
padding:8px;
border:1px solid #D6D6D6;
line-height:20px;
}

.post table th{
background-color:#F5F5F5;
text-align:right;
padding:8px;
white-space:nowrap;
color: #151515;
border-top:1px solid #D4D4D4;
border-right:4px solid #D4D4D4;
border-bottom:1px solid #D4D4D4;
border-left:1px solid #D4D4D4;
font-size:13px;
font-weight:normal;
letter-spacing:1px;
background-repeat:repeat-x;
background-position:top;
}


.post dt{font-weight:bold;}

.post dd{padding-bottom:10px;}

.post img{max-width:100%;height:auto;}

img.aligncenter{
display:block;
margin:5px auto;
}

img.alignright, img.alignleft{
padding:4px;
margin:0 0 2px 7px;
display:inline;
}

img.alignleft{margin:0 7px 2px 0;}

.alignright{float:right;}
.alignleft{float:left;}

.tel img {
  height: auto;      /* 文字サイズに合わせる */
  vertical-align: middle;
}

	.content-text button{
		display: block;
		margin: 15px auto 0;
		padding: 10px 18px;
		border: none;
		border-radius: 8px;
		background: #2b8cff;
		color: white;
		cursor: pointer;
	}

/* PCでは非表示 */
/*.sp-text {
  display: none;
}*/

/* PC用
------------------------------------------------------------*/
@media only screen and (min-width:960px){
	nav div.panel{
	display:block !important;
	float:left;
	}

	a#menu{display:none;}
	
  #mainNav{
	clear:both;
	z-index:200;
	position:relative;
	}

	#mainNav li{
	float:left;
	position:relative;
	}

	#mainNav li a{
	color:#555;
	display: block;
	text-align: center;
	_float:left;
	font-size:13px;
	width:160px;
	height:30px;
	padding:15px 0;
	border-top:2px solid #ebebeb;
	border-bottom:2px solid #ebebeb;
	}

	#mainNav li a span,#mainNav li a strong{display:block;}

	#mainNav li a span{
	color:#bababa;
	font-size:10px;
	}
	
	#mainNav ul ul{width:160px;background:#fff;}
	#mainNav li ul{display:none;}

	#mainNav li:hover ul{
	display:block;
	position:absolute;
	top:64px;
	z-index:500;
	}
	
	#mainNav li li{
	margin:0;
	float:none;
	width:160px;
	border:0;
	}
  #mainNav li li:last-child{border:0;}
	
	#mainNav li li a{
	width:auto;
	height:auto;
	padding:10px;
	font-size:95%;
	text-align:left;
	border:0;
	}

	#mainNav li li span{padding:0 10px;}
	
	#mainNav li.current-menu-item a{
	border-color:#555;
	}

	#mainNav li.current-menu-item a,#mainNav li a:hover,#mainNav li.current-menu-item li a:hover{
	color:#999;
	}

	#header {
		width: 100%;
		margin: 0;
	}
	
	#wrapper{clear:both;padding:20px 0;}
	
	#main{
	float:right;
	width:680px;
	padding:15px 0 0 0;
	}
	
	#sidebar{
	float:left;
	width:250px;
	padding:15px 0;
	overflow:hidden;
	}
	
	#sidebar article{
	margin-bottom:20px;
	overflow:hidden;
	}
	
	
	/* グリッド全体 */
	.gridWrapper{
	display:table;
	border-collapse:separate;
	border-spacing:0px;
	}
	
	/* グリッド */
	.grid{
	width:320px;
	display:table-cell;
	}

}

.content-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

@media only screen and (max-width:959px){

	*{
    -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
         -o-box-sizing:border-box;
        -ms-box-sizing:border-box;
            box-sizing:border-box;
	}



	.fullscreen-menu {
		justify-content: center;
		padding-right: 0;
	}

	.fullscreen-menu ul {
		text-align: center;
		padding: 0;
	}

	.fullscreen-menu li {
		margin: 20px 0;
	}

	.fullscreen-menu a {
		font-size: 24px;
	}

	.menu-btn {
		width: 30px;
	}
	
	#mainNav{
	clear:both;
	width:100%;
	margin:0 auto;
	padding:0;
  border:1px solid #e4e4e4;
	border-left:0;
	border-right:0;
	}

	#mainNav a.menu{
	color:#555;
	width:100%;
	display:block;
	height:40px;
	line-height:40px;
	font-weight: bold;
	text-align:left;
	}

	#mainNav a#menu span{
	padding-left:10px;
	}
	#mainNav a.menu span:before{content:"≡ ";}
	#mainNav a.menuOpen span:before{content:"× ";}

	#mainNav a#menu:hover{cursor:pointer;}

	nav .panel{
	display:none;
	width:100%;
	position:relative;
	right:0;
	top:0;
	z-index:1;
	}

	#header .logo img {
		width: 320px;
		height: auto;
	}

#footer-top .logo img {
	width: 220px;
	height: auto;
}

	.content-box {
		flex-direction: column;
		text-align: center;
	}
	.content-img {
		display: flex;
		justify-content: space-between;
		gap: 10px;
		flex-wrap: nowrap;
	}
	.content-text {
		text-align: left;
	}
	.content-text p,
	.content-text li {
		text-align: left;
	}
	.content-img img {
		width: 23%;
		height: auto;
	}
	.content-text img {
		max-width: 100%;
		height: auto;
		display: block;
		text-align: left;
	}
	.img-biglarge {
		width: 80%;
		max-width: 300px;
		margin: 0 auto;
	}
	.img-large {
		width: 80%;
		max-width: 300px;
		margin: 0 auto;
	}
	.img-small {
		width: 80%;
		max-width: 300px;
		margin: 0 auto;
	}

.card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.photo{
	width: 175px;
	height: 175px;

	object-fit: contain;

	display: block;
	margin: 0 auto;
}

.card h3 {
  margin: 0;
  font-size: 16px;
  flex: 1;
}
	
	#mainNav ul{margin:0;padding:0;}

  #mainNav li{
	float:none;
	clear:both;
	width:100%;
	height:auto;
	line-height:1.2;
	}

	#mainNav li a,#mainNav li.current-menu-item li a{
	color:#555;
	display: block;
	padding:15px 10px;
	text-align:left;
	border-bottom:1px dashed #ccc;
	}
	
 	#mainNav li a span{padding-left:10px;}
	
	
	#mainNav ul > li:last-child a{border:0;}
	#mainNav li li:last-child a{border-bottom:1px dashed #ccc;}
 
	#mainNav li.current-menu-item a,#mainNav li a:hover,#mainNav li.current-menu-item a,#mainNav li a:active, #mainNav li li.current-menu-item a, #mainNav li.current-menu-item li a:hover, #mainNav li.current-menu-item li a:active{
	color:#555;
	}

	#mainNav li li{
	float:left;
	border:0;
	}

	#mainNav li li a, #mainNav li.current-menu-item li a, #mainNav li li.current-menu-item a{
	padding-left:40px;
	background:url(images/sub1.png) no-repeat 20px 18px;
	}

	#mainNav li li.current-menu-item a,#mainNav li li a:hover, #mainNav li.current-menu-item li a:hover{background:url(images/sub1.png) no-repeat 20px -62px;}

	#mainNav li li:last-child a{background:url(images/subLast.png) no-repeat 20px 20px;}
	#mainNav li li:last-child.current-menu-item a,#mainNav li li:last-child a:hover,#mainNav li.current-menu-item li:last-child a:hover{background:url(images/subLast.png) no-repeat 20px -65px;}

	nav div.panel{float:none;}
	
	#header{padding-left:10px;}
	
	#main{padding-top:15px;}
	section.toppage{margin:0;}
	#sidebar{padding-bottom:15px;}
	#sidebar article{padding:7px 8px;}
	
		/* =========================
	   フッター調整
	========================= */

	#footer .top{
		display:flex;
		flex-direction:column;
		align-items:center;
		gap:15px;
		text-align:center;
	}

	/* info中央寄せ */
	#footer #info .info{
		margin-left:0;
		text-align:center;
	}

	/* footnavを下へ */
	ul.footnav{
		display: flex;
		flex-direction:column;
		align-items:center;
		gap:12px;
	}

	ul.footnav li{
		border-right:none;
		padding:0;
	}
ul.footnav{
	display: flex;
	flex-direction: row;
	gap: 20px;
}	

}


@media only screen and (max-width:640px){
	#header{height:auto;padding-bottom:20px;}
	
	#header h1,.logo,.info{text-align:center;}
	
	.logo,.info{clear:both;width:100%;float:none;}
	
	.logo p{float:none;display:block;}
	.logo img{float:none;padding:0;}
	
	.box img{
	float:left;
	margin-right:5px;
	}
	
	.box h3{padding-top:0;}

	.content-inner {
		flex-direction: column;
		flex-direction: column;
		align-items: center; /* ←これで全体中央寄せ */
    	text-align: center;  /* ←文章も中央揃え */
	}

	.content-img {
		order: 1;
		display: flex;
		justify-content: center;
	}

	.content-text {
		order: 2;
	}

  .alignleft,.alignright,img.alignleft,img.alignright{float:none;display:block;margin:0 auto 10px;}
	/* =========================
	   フッタースマホ調整
	========================= */

	#footer .top{
		display:flex;
		flex-direction:column;
		align-items:center;
		gap:15px;
		text-align:center;
	}

	/* info中央寄せ */
	#footer #info .info{
		margin-left:0;
		text-align:center;
	}

	/* footnavを下へ */
	ul.footnav{
		display: flex;
		flex-direction:column;
		align-items:center;
		gap:12px;
	}

	ul.footnav li{
		border-right:none;
		padding:0;
	}
ul.footnav{
	display: flex;
	flex-direction: row;
	gap: 20px;
}	

}


@media only screen and (max-width:480px){
	.grid{width:100%;margin:10px 0;}
	.box img{max-width:100px;}
	#mainBanner h2,#mainBanner p{font-size:80%;}


.modal-content {
	align-items: flex-start;
	text-align: left;
}
}

video {
  max-width: 100%;
  height: auto;
}
