@charset "utf-8";
/* CSS Document */
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td { 
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline; }

body {
    font-family:"メイリオ", Meiryo, Osaka, sans-serif;
	color: #222;
	padding: 0;
    margin: 0;
    background:linear-gradient(to bottom, #EEFFD4, rgba(255,255,255,0.6), #D8E76D);
    background : -webkit-gradient(linear, left top, left bottom, from(#EEFFD4), to(#D8E76D), color-stop(0.3, #F3FBFF), color-stop(0.7, #F3FBFF));
    background : -webkit-linear-gradient(top, #EEFFD4, rgba(255,255,255,0.6), #D8E76D);
    /*background-position: bottom left;*/
    
}

div,
p,
ol,
ul{ margin:0;
    padding:0;
	list-style:none;}	

a {
	color: #354C6C;
	text-decoration: none;
}

a:hover {
	color: #4A8BAC;
    font-weight: bold;
}


a img {
  border: none; }

*:focus {
outline: none;
}

button {
    background: transparent;
    border-radius: 0;
    border: 0;
    padding: 0;

    -webkit-appearance: none;
    -webkit-border-radius: 0;

    user-select: none;
      cursor: pointer;
}

button img {
  display: block;
    border: none;
}

button:focus {
    outline: 0 none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
/* =Global
-------------------------------------------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }


/* font-size calc lock */
        h1 {font-family: "メイリオ", Meiryo, Osaka, sans-serif; 
            font-size: 5rem;
        }
		h2 {
            font-size: 2.05rem;
        } 
		h3 {font-size: 1.7rem;}
        p {
            font-size: .935rem;
        }
       @media screen and (min-width: 420px) {
            h1 {
                font-size: calc( 1.25rem + 3.125vw - 10px );
           }}

        @media (max-width: 1250px) {
            h1 {
                font-size: calc( 1.85rem + 20px );
            }
			
			p {
                font-size: calc( .7375rem + 3px );
            }
        }
    
#container, #license, #info {
  width: 94%;
  margin: 0 auto;
  padding: 0; }

/* =Extras
-------------------------------------------------------------- */
.clearfix:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0; }

/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
}
.clearfix {
	display: table-cell;
}
.clearfix {
    display: block;
}
/* for IE 5.5-7 */
.clearfix {
    zoom:100%;
}




.textlinks a{text-decoration: underline}


/* GRID */

.layout{
  display:grid;
  grid-template-columns:420px 1fr;
  grid-template-areas:
    "left top"
    "left bottom";
  gap:20px;
}

#left_frame{
  grid-area:left;
    padding:10px 10px 0 10px;
}

.right_top{
  grid-area:top;
}

.right_bottom{
  grid-area:bottom;
}

/* MAP */

.imgmaps img{
  width:100%;
  height:auto;
}


/* Media Queries */

@media (max-width:1100px){

#left_frame{
    flex:0 0 320px;}

 .geokun1{display: none}
}
    
@media (max-width:840px){

.layout{
  grid-template-columns:1fr;
  grid-template-areas:
    "top"
    "left"
    "bottom";
}
.geokun{display: none}
}
    .imgmaps{
  max-width:420px;
  margin:auto;
}