@charset "UTF-8";
/*
Theme Name: tsumagoi-s
Author: Giken Consul
Description: original theme
Version: 1.0
*/

/******************************************************
/* 変数
******************************************************/
:root {
	--maincolor: #008C00;
	--backcolor: #F5FFF5;
	--headerheight: 90px;
	--headerminiheight: 65px;
}


/******************************************************
/* reset
******************************************************/
* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	font-feature-settings: 'pwid';
	margin: 0; 
}

body {
	margin: 0; 
}

main {
	display: block; 
}

/* img */
img {
	vertical-align: bottom;
	border: none; 
}

/* list */
ul {
	list-style: none;
	margin: 0;
	padding: 0; 
}

/* table */
table {
	border-collapse: collapse;
	width: 100%; 
}

/* link */
a {
	text-decoration: none;
	color: inherit; 
}
a:hover, a:link, a:visited, a:active {
    text-decoration: none;
    color: inherit;
}

/* typography */
h1, h2, h3, h4, h5 {
	margin: 0;
	font-weight: normal;
	line-height: 1;
	font-feature-settings: "palt"; 
}

/******************************************************
/* common
******************************************************/
/* Typography */
html {
	line-height: 1.25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: .1em; 
}

body {
	font-family: メイリオ, Meiryo, sans-serif; 
}

p {
	line-height: 2;
	font-feature-settings: 'pwid'; 
}

h1, h2, h3, h4, h5 {
	line-height: 1.35; 
}

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

.center {
	text-align: center; 
}

/* Flex box */
.flex {
	display: flex;
	justify-content: space-between; 
}

/* hover */
.opa {
	transition: opacity .2s; 
}
.opa:hover {
    opacity: .8; 
}

/* visibility */
.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0; 
}

main {
	padding-bottom: 0; 
}

/******************************************************
/* header
******************************************************/
header {
	width: 100%;
	z-index: 1; 

	border-top: 5px solid var(--maincolor);
	border-bottom: 5px solid var(--maincolor);

	background: var(--backcolor);

	height: var(--headerheight);
}
@media screen and (max-width: 768px) {
	header {
		height: var(--headerminiheight);
	}
}

header h1 {
	flex-basis: 235px;
	width: 235px;
/*v1
	padding-top: 5px;
	padding-left: 15px;
	padding-bottom: 5px;
*/
	padding-top: 7px;
	padding-left: 11px;
	padding-bottom: 3px;
}
@media screen and (max-width: 768px) {
	header h1 {
		flex-basis: 150px; 
		width: 150px;
		padding-left: 5px;
		padding-top: 5px;
	}
}
header h1 img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	header h1 img {
		width: 150px;
	}
}
header .info {
	text-align: center;
	padding-top: 20px;
	padding-right: 20px;
	justify-content: flex-end;
}
@media screen and (max-width: 768px) {
	header .info {
		padding-top: 13px;
		padding-right: 5px;
		font-size: 11px;
	}
}
header .info a {
	margin-left: 10px;
	text-decoration: none;
	display: inline-block;
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	background: var(--maincolor);
	color: #FFFFFF;
	border-radius: 5px;
	border: 1px solid var(--maincolor);
	filter: drop-shadow(0px 2px 4px #ccc);
	opacity: .9;
}
@media screen and (max-width: 768px) {
	header .info a {
		margin-left: 5px;
		padding: 0 15px;
		height: 30px;
		line-height: 30px;
	}
}

header .info a i {
	font-weight: 900;
	margin-right: 5px;
}
header div.info a:hover {
	opacity: .7;
}

/******************************************************
/* home
******************************************************/
.home .main {
	width: 100%;
}
.home #webmap {
	height: calc(100vh - 90px);
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.home #webmap {
		height: calc(100dvh - 65px);
	}
}

.home .inner {
	width: 100%;
}
