/*すべてのページに適用される設定*/
html {
  font-size: 16px;
  font-family: sans-serif;
}
*{
  box-sizing: border-box;
}
body{
  margin: 0 0 0 0;
}
p, li, td {
    line-height: 1.7;
}
a:link{
  color: #f07d34;
  text-decoration: none;
}
a:visited{
  color: #f07d34;
  text-decoration: none;
}
a:hover{
  color: #f07d34;
  text-decoration: underline;
}
a:active{
  color: #f07d34;
  text-decoration: underline;
}
img{
  max-width: 100%;
}

/*すべてのページに適用 - ヘッダー*/
.header{
  padding-top: 60px;
  background-image: url(../images/sakura_town.png);
  background-repeat: repeat-x;
}
.logo{
  text-align: center;
}
.nav ul{
  margin: 30px 0 0 0;
  padding: 0;
  list-style-type: none;

  display: flex;
  justify-content: center;
  gap: 40px;
}
.nav a:link{
  color: #f07d34;
}
.nav a:visited{
  color: #f07d34;
}
.nav a:hover{
  text-decoration: none;
}
.nav a:active{
  text-decoration: none;
}

/*すべてのページに適用 - ヒーロー*/
.hero {
  padding: 137px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}
.hero.index {
  padding: 287px 0;
  background-image: url(../images/ll.jpg);
}
.hero.company {
  padding: 287px 0; 
  background-image: url(../images/soukai.jpg);
}
.hero.kaihou {
  padding: 287px 0;
  background-image: url(../images/kaihou.jpg) ;
}
.hero.access {
  padding: 287px 0;
  background-image: url(../images/rrrr.gif);
}

/*すべてのページに適用 - メイン*/
main{
  margin: 90px auto 90px auto;
  max-width: 1000px;
}

main h2 {
  margin: 60px 0 20px 0;
  border-bottom: 2px solid #0000ff;
  padding: 0 0 5px 0;
  color:#0000ff;
  font-size: 1.3rem;
}

/*すべてのページに適用 - フッター*/
.gotop{
  text-align: center;
}
.copyright{
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: rgb(4, 180, 250);
  color: #ffffff;  
  text-align: center;
}

/*個別のスタイル*/
/*index.html*/
.image{
  text-align: center;
}
.slider{
  text-align: center;
}

.kaihous{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.meeting-info{
  border-collapse: collapse;
}
.meeting-info th, .meeting-info td{
  border: 1px solid #DBDBDB;
  padding: 20px;
}
.meeting-info th{
  width: 112px;
  text-align: left;
  vertical-align: top;
}

/*access.html*/
.map{
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.map inframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*company.html*/
.table_design01 {
  border-collapse: collapse;
  width:100%;
  max-width: 700px;
}
.table_design01 th, .table_design01 td{
  border: 2px solid #fff;
  background-color: #b9e7fc;
  padding: 1em;
}
.table_design01 th{
  background-color: #27ddf5;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
}
.group-info{
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
}

/*モバイル対応*/
@media (max-width: 767px) {
    .nav ul{
      flex-wrap: wrap;
      gap: 20px;
    } 
    main{
      padding: 0 4%;
    } 

    /*index.html*/
    .hero.index{
        padding: 28vh 0;
    }
  }
