@charset "utf-8";
/* CSS Document */

/*-------------------------------
	共通
--------------------------------*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  max-height: 9999999px; 
}
html {
  scroll-behavior: smooth;
}
body {
	color:#333;
	font-size:18px;
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-weight:400;
	text-align: center;
}
p,dt,dl {
	line-height:1.8;
}
img {
	border: none;
	height:auto;
	image-rendering: -webkit-optimize-contrast;
}
a {
	color:#F18E00;
	transition: background-color 0.4s;
}
a img {
	opacity:1;
	transition:opacity 0.4s;
	backface-visibility: hidden;
}
a:hover img  {
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
.ov {
	transition:opacity 0.4s;
}
.ov:hover {
	filter:alpha(opacity=60);
	opacity: 0.6;
}
.wrap {
	overflow:hidden;/*iPadの右側にできるスペース対策*/
}
.right {
	text-align:right;
}
.left { 
	text-align:left;
}
.center {
	text-align:center;
}
br.spbr {
	display:none;
}
br.pcbr {
}
.box {
	width:100%;
	max-width:800px;
	margin:50px auto 30px;
	padding:0 15px;
}
a.tel {
	display:inline-block;
	pointer-events:none;
}
@media only screen and (max-width:600px){
body {
	font-size: 16px;
	text-align:center;
	min-width:320px;
	-webkit-text-size-adjust: 100%;
}
a {
	transition: none;
}
a:hover img  {
	opacity:1;
}
.box {
	width:auto;
	margin:30px auto 20px;
	padding:0 15px;
}
a.tel {
	pointer-events:auto;
}
br.spbr {
	display:block;
}
br.pcbr {
	display:none;
}
}


h1 {
	font-size:30px;
	margin:0 auto 15px;
}
h2 {
	font-size:26px;
	margin:0 auto 20px;
}
.logo {
	font-size:24px;
	margin-bottom:30px;
}
.logo img {
	width:100%;
	max-width:400px;
	margin-bottom:20px;
}
.txt {
	margin-bottom:50px;
}
.copyright {
	font-size:16px;
}
@media only screen and (max-width:600px){
h1 {
	font-size:24px;
	margin:0 auto 10px;
}
h2 {
	font-size:20px;
	margin:0 auto 15px;
}
.logo {
	font-size:18px;
	margin-bottom:20px;
}
.logo img {
	width:90%;
	max-width:400px;
	margin-bottom:10px;
}
.txt {
	text-align:left;
	margin-bottom:30px;
}
.copyright {
	font-size:13px;
}
}


/*表組*/
.company-info {
	text-align:left;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  margin: 0 0 50px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.company-info dt,
.company-info dd {
  box-sizing: border-box;
  margin: 0;
  padding: 12px 20px;
  line-height: 1.8;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.company-info dt {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
}

.company-info dd {
  background-color: #fff;
}

/* スマートフォンでは縦並びにする */
@media (max-width: 600px) {
  .company-info {
    grid-template-columns: 1fr;
	margin: 0 0 30px;
  }

  .company-info dt {
    padding-bottom: 10px;
    border-bottom: 0;
  }

  .company-info dd {
    padding-top: 10px;
  }
}

