<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

body{
  margin: 0;
  line-height : 1.8;
  text-decoration : none;
  color: rgba(102, 102, 102, 1.0);
}

.container{
  display: grid;
  grid-template-rows: 90px 100px auto auto;
  grid-template-columns: auto auto;
  height: 100vh;
}

.boxA{
  grid-row: 1/ 2;
  grid-column: 1/ 2;
  padding-left: 20px;
  background-color:rgba(255, 255, 255, 1.0);
}

.boxB{
  grid-row: 1/ 2;
  grid-column: 2/ 3;
  padding-right: 20px;
  padding-top: 20px;
  text-align: right;
  background-color:rgba(255, 255, 255, 1.0);
}

.boxC{
  grid-row: 2/ 3;
  grid-column: 1/ 3;
  background: linear-gradient(rgba(255, 255, 255, 1.0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

.boxD{
  grid-row: 3/ 4;
  grid-column: 1/ 3;
  text-align: center;
}

.boxEF{
  grid-row: 4/ 5;
  grid-column: 1/ 3;
  text-align: right;
  padding-right: 20px;
}

.header{
  position: fixed;
  width: 100%;
  height: 190px;
}

.main{
  width: 100%;
  height: 100%;
}



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

body{
  line-height : 1.5;
}

.container{
  display: grid;
  grid-template-rows: 90px 60px auto auto;
  grid-template-columns: auto auto;
  height: 100vh;
}

.boxA{
  padding-left: 10px;
}

.boxB{
  padding-right: 10px;
  padding-top: 10px;
}

.boxEF{
  padding-right: 10px;
  padding-bottom: 30px;
}

.header{
  position: fixed;
  width: 100%;
  height: 180px;
}

.logo{
  max-width: 57%;
  height: auto;
}

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

.br::before{
	content: "\A" ;
	white-space: pre ;
}


}</pre></body></html>