@font-face {
	font-family: 'tele';
	src: url('../fonts/telegrama_render.otf') format('opentype');
}

@font-face {
	font-family: 'freehand';
	src: url('../fonts/DISCO___.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
}
@media screen and (orientation: portrait) {
html body {
  width: 100%;
  height: 100%;
}

header {
  width: 100%;
  height: 100px;
  background-color: #001e43;
}

a {
    text-decoration: none;
}

a:link {
	color: white;
	}

a:visited {
	color: white;
	}

.logo {
    width: 100%;
    padding-top: 15px;
    font-family: 'tele';
    text-align: center;
}

.menu {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

div.menu a {
  padding: 5px;
  font-family: 'freehand';
  font-weight: bolder;
  border: 1px solid;
}

/* 通常時はホバー時の文字を非表示にする */
div.menu a .hover{
  display: none;
}

/* ホバー時は通常時の文字を非表示にする */
div.menu a:hover .nomal{
  display: none;
}

/* ホバー時に、ホバー時の文字を表示する */
div.menu a:hover .hover{
  display: inline;
}

section {
  }

div.top {
    background-image: url('../img/top.jpg');
    background-position: 70%;
    background-size: cover;
    width: 100%;
    padding-top: 50px;
    height: 600px;
  }

.copy {
  color: white;
  padding: 10px;
  text-align: left;
  border-radius: 20px 20px 20px 20px;
  background: rgba(0,29,66,0.7);
  }

.copy h3 {
	font-family: 'Yusei Magic', sans-serif;
	font-weight: lighter;
  font-size: 30px;
}

.copy p {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
  font-size: 18px;
}

div.content1 {
    background-image: url('../img/back1.jpg');
    background-position: 50%;
    background-size: cover;
    width: 100%;
    padding-top: 50px;
    height: 1400px;
  }

.profile {
  	padding: 10px;
    color: white;
    border-radius: 20px 20px 20px 20px;
    background: rgba(0,29,66,0.7);
  }

.profile h2 {
  	text-align: center;
  	font-family: 'Yusei Magic', sans-serif;
  	margin-bottom: 30px;
  }

.profile p {
	font-size: 18px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
}

.sign {
	text-align: center;
}

.company_name {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 20px;

}

.position {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 15px;
}

.topname {
	font-family: 'Yusei Magic', sans-serif;
	font-size: 25px;
}

.article1 {
    margin-top: 30px;
  	padding: 10px;
    color: white;
    border-radius: 20px 20px 20px 20px;
    background: rgba(0,29,66,0.7);

  }

.article1 h2 {
  text-align: center;
	font-family: 'freehand';
  margin-bottom: 30px;
}

.article1 h3 {
  text-align: left;
	font-family: 'Yusei Magic', sans-serif;
	margin-top: 30px;
	margin-bottom: 10px;
}

.article1 p {
  	font-size: 18px;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		font-weight: bold;
  }

.price {
  	font-size: 20px;
  	font-weight: bolder;
  }

div.content2 {
    background-image: url('../img/back2.jpg');
    background-position: 50%;
    background-size: cover;
    width: 100%;
    padding-top: 50px;
    height: 800px;
  }

.article2 {
  }

.about {
    color: white;
  	background-color: #001e43;
  }

.about table {
  width: 100%;
  	border-collapse: collapse;
  	border: 1px solid;
		font-family: 'M PLUS Rounded 1c', sans-serif;
  }

.about th {
    text-align: center;
  	border: 1px solid;
  	background-color: #001e43;
  	padding: 5px;
    font-size: 10px;
  }

.about td {
  	border: 1px solid;
    text-align: left;
  	padding: 5px;
}

.footer {
    width: auto;
    height: 50px;
    color: white;
    background-color: #001e43;
    border-top: 1px solid;
    border-bottom: 1px solid;
    box-sizing: border-box;
  }

.footer p {
    text-align: center;
    margin-right: 15px;
    margin-top: 20px;
  }
}

@media screen and (orientation: landscape) {
html body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

header {
  width: 100%;
  height: 100px;
  background-color: #001e43;
}

a {
    text-decoration: none;
}

a:link {
	color: white;
	}

a:visited {
	color: white;
	}

.logo {
    width: 100%;
    padding-top: 15px;
    font-family: 'tele';
    text-align: center;
}

.menu {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

div.menu a {
  padding: 5px;
  font-family: 'freehand';
  font-weight: bolder;
  border: 1px solid;
}

/* 通常時はホバー時の文字を非表示にする */
div.menu a .hover{
  display: none;
}

/* ホバー時は通常時の文字を非表示にする */
div.menu a:hover .nomal{
  display: none;
}

/* ホバー時に、ホバー時の文字を表示する */
div.menu a:hover .hover{
  display: inline;
}

section {
  }

div.top {
    background-image: url('../img/top.jpg');
    background-position: 70%;
    background-size: cover;
    width: 100%;
    padding-top: 50px;
    height: 250px;
  }

.copy {
  color: white;
  padding: 10px;
  text-align: left;
  border-radius: 20px 20px 20px 20px;
  background: rgba(0,29,66,0.7);
  }

.copy h3 {
	font-family: 'Yusei Magic', sans-serif;
	font-weight: lighter;
  font-size: 30px;
}

.copy p {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
  font-size: 18px;
}

div.content1 {
    background-image: url('../img/back1.jpg');
    background-position: 50%;
    background-size: cover;
    width: 100%;
    padding-top: 50px;
    height: 1000px;
  }

.profile {
  	padding: 10px;
    color: white;
    border-radius: 20px 20px 20px 20px;
    background: rgba(0,29,66,0.7);
  }

.profile h2 {
  text-align: center;
	font-family: 'Yusei Magic', sans-serif;
  margin-bottom: 30px;
}

.profile p {
  	font-size: 18px;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		font-weight: bold;
}

.sign {
	text-align: right;
}

.company_name {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	font-size: 20px;

}

.position {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	font-size: 15px;
}

.topname {
	font-family: 'Yusei Magic', sans-serif;
	font-size: 25px;
}




.article1 {
    margin-top: 30px;
  	padding: 10px;
    color: white;
    border-radius: 20px 20px 20px 20px;
    background: rgba(0,29,66,0.7);

  }

.article1 h2 {
  	text-align: center;
		font-family: 'freehand';
  	margin-bottom: 30px;
}

.article1 h3 {
  text-align: left;
	font-family: 'Yusei Magic', sans-serif;
  margin-top: 30px;
  margin-bottom: 10px;
}

.article1 p {
  	font-size: 18px;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		font-weight: bold;
  }

.price {
  	font-size: 20px;
  	font-weight: bolder;
  }

div.content2 {
    background-image: url('../img/back2.jpg');
    background-position: 50%;
    background-size: cover;
    width: 100%;
    padding-top: 50px;
    height: 800px;
  }

.article2 {
  }

.about {
    color: white;
  	background-color: #001e43;
  }

.about table {
  width: 100%;
  	border-collapse: collapse;
  	border: 1px solid;
		font-family: 'M PLUS Rounded 1c', sans-serif;
  }

.about th {
    text-align: center;
  	border: 1px solid;
  	background-color: #001e43;
  	padding: 5px;
    font-size: 10px;
  }

.about td {
  	border: 1px solid;
    text-align: left;
  	padding: 5px;

  }

.footer {
    width: auto;
    height: 50px;
    color: white;
    background-color: #001e43;
    border-top: 1px solid;
    border-bottom: 1px solid;
    box-sizing: border-box;
  }

.footer p {
    text-align: center;
    margin-right: 15px;
    margin-top: 20px;
  }
}
