@charset "UTF-8";
/* CSS Document */
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }
body {
  margin:0;
  background-color: white;
  font-family: 'Lato', sans-serif;
}

h1 {
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
p {
  letter-spacing: 1px;
  font-size:14px;
  color: #333333;
}
p img{
    width: 100%;
    margin:40px auto;
    display: block;
}
a{
    color:inherit;
    text-decoration: none;
    
}
.header {
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgba(31,47,143,1.00) 0%, rgba(0,172,193,1) 100%);
  color:white;
}
.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.inner-header {
  height:43vh;
  width:100%;
  margin: 0;
  padding: 0;
}
.inner-header h1{
  font-family: 'Lato', sans-serif;
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
    z-index: 1;
}


/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
.txt {
    display: flex;
    overflow: hidden;
}

.txt p {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: .06em;
    margin: 0;

    /* ここからアニメーション関係 */
    transform: translateY(2em);
    animation: textanimation 1.5s forwards;
}
/* 1文字目 */
.txt p:nth-child(1) {
    animation-delay: 0.6s
}
/* 2文字目 */
.txt p:nth-child(2) {
    animation-delay: 0.9s
}
/* 3文字目 */
.txt p:nth-child(3) {
    animation-delay: 1.2s
}
/* 4文字目 */
.txt p:nth-child(4) {
    animation-delay: 1.5s
}
/* 5文字目 */
.txt p:nth-child(5) {
    animation-delay: 1.8s
}
/* 6文字目 */
.txt p:nth-child(6) {
    animation-delay: 2.1s
}
/* 7文字目 */
.txt p:nth-child(7) {
    animation-delay: 2.4s
}


@keyframes textanimation {
    0% {
        transform: translateY(2em);
    }

    100% {
        transform: translateY(0);
    }
}



/*Shrinking for mobile*/
@media (max-width: 768px) {
.inner-header {
  height:60vh;
  width:100%;
  margin: 0;
  padding: 0;
}
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
  }
  h2 {
    font-size:18px;
  }
.txt p {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: .06em;
    margin: 0;

    /* ここからアニメーション関係 */
    transform: translateY(2em);
    animation: textanimation 1.5s forwards;
}
}

nav {
  position: relative;
  width: 100%;
  height: 50px;
  background-color: #005081;
  font-size: 0;
  margin: 27px auto 0;   
}
nav a {
  line-height: 50px;
  height: 100%;
  font-size: 15px;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: white;
  cursor: pointer;
  width: 120px;
}
nav a:hover{  
    width: 120px;
    background-color: #003F9F
}

.content01 {
  text-align:center;
  width: 100%;
    margin:60px 0;
}
.content01 h2 {
  font-weight:300;
  letter-spacing: 2px;
   line-height: 1.8em;
  font-size:34px;
}
.page_title {
  position: relative;
  padding: 1rem 2rem;
  border-bottom: 2px solid #A3B6CB;
  width: 70%;
  margin: 40px auto 0;
font-size: 24px;
    color: rgba(55,55,55,1.00)
}

.page_title:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 20%;
  height: 2px;
  content: '';
  background: #012F76;
}

@media (max-width: 768px) {
.content01 h2 {
  font-weight:300;
  letter-spacing: 2px;
  line-height: 1.8em;
  font-size:20px;
}
.page_title {
  position: relative;
  padding: 1rem ;
  width: 90%;
  margin: 40px auto 0;
font-size: 18px;
}
}
/* footer */
footer{
  background-color: #005081;
	margin:0;
    padding: 0;
}
footer .inner{
	padding: 30px;
    min-width: 90%;
}
footer .inner h3{
	font-size: 100%;
	border: solid 1px #222222;
	color: #222222;
	padding: 10px;
	max-width: 40%;
	text-align: center;
	margin: 0 auto 20px;
}
footer .inner p{
	color: #222222;
	font-size: 60%;
	text-align: center;
}
footer .footer_txt{
 text-align: center;
  padding: 20px;
  margin: 0 auto;
  width: 100%;
}
footer .footer_txt a{
	color: #fff;
}
.small{
  font-size: 10px;
	margin: 0 auto;
	letter-spacing: 0.1em;
	color: #cccccc;
}
.company{
   color: #FFF;
}

.company dl{
	margin:16px auto;
}
.company dl dt{
	font-size:16px;
	font-weight:600;
	margin-bottom:25px;
	text-align:center;
}
.company dl dd{
	font-size:12px;
	line-height:1.4em;
	margin-bottom:6px;
}
.company #freecall{
	display:none;
}

.company{
  width: 100%;
	text-align: left;
}
/*PAGE TOPボタン追加*/
#pagetop{
width: 50px;
height: 50px;
position: fixed;
right: 10px;
bottom: 50px;
background: #003a75; /*ボタンの色*/
opacity: 0.6;
border-radius: 50%; /*角の丸み*/
}
#pagetop a{
position: relative;
display: block;
width: 50px;
height: 50px;
text-decoration: none;
}
#pagetop a::before{
font-family: "Font Awesome 5 Free";
content: '\f102'; /*アイコン*/
font-weight: 900;
font-size: 25px;
color: #fff; /*アイコンの色*/
position: absolute;
width: 25px;
height: 25px;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
text-align: center;
}

@media screen and (min-width: 767px) {
h1 {
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
h2 {
  font-weight:300;
  letter-spacing: 2px;
  font-size:30px;
}
p {
  letter-spacing: 1px;
  font-size:16px;
  color: #333333;
}
p img{
    width: 100%;
    margin:40px auto;
    display: block;
}
footer .inner{
  display: flex;
  justify-content: space-between;
  padding: 60px 200px;
  margin: 0;
  width: 980px;
}
footer .inner h3{
	font-size: 120%;
	padding: 10px;
	max-width: 10%;
	text-align: center;
	margin: 0 auto 20px;
}
footer .inner p{
	font-size: 60%;
	text-align: center;
}
.company{
  width: 100%;
  text-align: left;
}
.company dl dt{
	text-align:left;
	margin-bottom:10px;
    font-size: 18px;
}
.company dl dd{
	text-align:left;
	margin-bottom:10px;
    font-size: 16px;
}
#pageTop {
    bottom: 100px;
}
}



/* company 会社概要 */

table.company_outline {
	width:90%;
	margin: 100px auto;
	border: 1px solid #CCCCCC;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
    line-height: 1.4em;
}
table.company_outline th {
	padding: 10px;
}
table.company_outline td {
	padding: 15px;
	text-align: left;
	vertical-align: top;
	color: #595960;
	background-color: #ffffff;
	border-top: dotted 1px #cccccc;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
}
table.company_outline th {
	padding: 15px;
	border-right: solid 1px #CCCCCC;
	border-top: solid 1px #CCCCCC;
	width: 20%;
	background-color: #ECEEF1;
	overflow: hidden;
	color: #595960;
	font-style: normal;
	font-weight: bold;
	letter-spacing: 2px;
	text-align: left;
	word-break: break-all;
	word-wrap: break-word;
	vertical-align: top;
}
table.company_outline p {
	color: #595960;
	padding: 0;
    margin: 5px 0;
    line-height: 1.8em;
        
}
.company_outline li{
    text-indent: 2em;
    list-style: inherit;
}
@media screen and (min-width: 767px) {
table.company_outline {
	width:70%;
	margin: 100px auto;
	border: 1px solid #CCCCCC;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
}
}
/*コンテンツ03*/
.content03{
}
.content03 dl{
    margin: 20px auto;
}
.content03 dl dd{
    margin: 20px auto;
}
.content03 dl dd h3{
    background-color: #113855;
    display: inline-block;
    padding:10px 30px;
    color: #FFF;
    letter-spacing: 0.4em;
}
.content03 dl dd p{
    padding:20px;
    font-size: 110%;
    margin-bottom: 10px;
}
.g-map{
    width: 90%;
    min-height: 600px;
    margin: 100px auto;
}
@media screen and (min-width: 767px) {
/*コンテンツ03pc*/
.content03{
	}
.content03 dl{
	display: flex;
	justify-content: space-around;
	margin: 30px 0;
}
.content03 dl dt{
	width: 60%;
	margin-left: 0%;
	text-align: left;
	margin-right: 30px;
}
.content03 dl dd{
	width:40%;
	margin:0 auto 0 auto;
}
.content03 dl dd img{
	display:block;
	width:100%;
}
.g-map{
    width: 70%;
    height: 800px;
    margin: 100px auto;
}

}