@charset "utf-8";
/* CSS Document */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ul {
  list-style-type: none;
}
a {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
img {
  max-width: 100%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
	font-size: 15px;
	background: url("img/back.gif");
	/*background-size: 10%;*/
	background-repeat: repeat;
}

p{
	margin-bottom: 1em;
}

@media print, screen and (min-width: 768px){
	
body {
	font-size: 16px;
}	
	
}


/*
font-family: "Zen Maru Gothic", sans-serif;
font-family: "Noto Sans JP", sans-serif;
font-family: "Noto Serif JP", serif;
*/

  @keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }




.red{
	color: #b84124;
}

.blue{
	color: #001a43;
}

/*ヘッダー*/



header .container {
  margin: 0 auto;
}
header img {
  width: 130px;
}

@media print, screen and (min-width: 768px){
header .container {
  /*padding: 20px;*/
	padding-bottom: 0;
}
	
header img {
  width: 160px;
}	
	
}

/*ハンバーガーナビ*/
.global-nav {
	
  position: fixed;
  right: -420px;
  top: 0;
	width: 90%;
	max-width: 600px;
  height: 90vh;
	margin: 0 auto;
  padding-top: 40px;
	background: #fff;
	background:url("img/back.gif");
	/*background-size: 100%;*/
  transition: all .6s;
  z-index: 9900;
  overflow-y: auto;
  padding: 0 20px;
  box-sizing: border-box;
  will-change: transform;
	display: none;
	font-family: "Zen Maru Gothic", sans-serif;
	
}
.hamburger {
  position: fixed;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 9990;
	background: #001a43;
	border-radius: 50%;
}
.ham-line {
  position: absolute;
  left: 12px;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all .6s;
}
.line01 {
  top: 14px;
}
.line02 {
  top: 22px;
}
.line03 {
  top: 30px;
}

.m-title{
	position: absolute;
	top:40px;
	right: 8px;
	color: #fff;
	font-size: 13px;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
}


.nav-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  cursor: pointer;
}
.nav-open .global-nav {
  /*right: 0;*/
	inset: 0;
  margin: auto;
	top:0;
	display:block;
	animation: fuwaMenu 0.2s linear 0s;
	
}
.nav-open .nav-bg {
  opacity: .9;
	/*opacity: 1.0;*/
  visibility: visible;
}
.nav-open .line01 {
  will-change: transform;
  transform: rotate(45deg);
  top: 21px;
  background-color: #fff;
}
.nav-open .line02 {
  width: 0;
  left: 50%;
}
.nav-open .line03 {
  will-change: transform;
  transform: rotate(-45deg);
  top: 21px;
  background-color: #fff;
}
.global-nav ul {
  padding-top: 60px;
  margin-bottom: 60px;
	
	
}
.global-nav ul li {
  display: block;
  position: relative;
}
.global-nav ul li a {
  padding: 15px 10px;
  color: #001a43;
  display: block;
  text-decoration: none;
  position: relative;
  vertical-align: middle;
  font-size: 18px;
	text-align: center;
	

}


.ham-line.change-color2 {
  background-color: #333;
}

@media print, screen and (min-width: 768px) {
	
	.hamburger{
		width: 90px;
		height: 90px;
		right: 30px;
		top: 30px;
	}	
	
  .ham-line {
    position: absolute;
	  left:24px;
    width: 40px;
    height: 3px;
    transition: all .6s;
  }
  .line01 {
	  top:28px;
  }
  .line02 {
    top: 42px;
  }
  .line03 {
    top: 56px;
  }
	
	
	
.nav-open .line01 {
  will-change: transform;
  transform: rotate(45deg);
  top: 42px;
  background-color: #fff;
}
.nav-open .line02 {
  width: 0;
  left: 50%;
}
.nav-open .line03 {
  will-change: transform;
  transform: rotate(-45deg);
  top: 42px;
  background-color: #fff;
}	

	
	.m-title{
		top:48px;
	}
	
	
.global-nav ul li a {
  padding: 15px;
	font-size: 24px;
	

}	
}





/*ボタン*/
a.btn {
  display: block;
  padding:0.5em 1em;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  color: #fff;
  background: #111;
  font-family: 'Noto Serif JP', serif;
  border: 1px solid #fff;
  font-size: 18px;
	text-align: center;
	box-sizing: border-box;

}



@media print, screen and (min-width: 768px){
	a.btn{
		font-size: 24px;
	}
}




/*フッター*/

footer{
	padding-top: 0px;
	padding-bottom: 20px;
	background:#001a43;
	text-align: center;
	
}

footer .container{
	padding: 1em;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	font-size: 13px;
}

.copy{
	font-size: 13px;
}

footer p{
	margin-bottom: 0.5em;
}

@media print, screen and (min-width: 768px){
footer{
	padding-top: 10px;
	padding-bottom: 10px;
}	

footer .container{
	font-size: 18px;
}
	
.copy{
	font-size: 14px;
}
}

.nami2{
	background:url("img/nami02.gif");
	background-repeat: repeat-x;
	height: 67px;
	width: 100%;
	background-size: 30%;
	background-position: center bottom;
}

@media print, screen and (min-width: 768px){
.nami2{
	background-size: 10%;
}	
	
	
}











.pc{display:none;} 
.pc_inline{display:none;}

@media print, screen and (min-width: 768px){
.pc{ display:block; } 
.pc_inline{ display:inline-block; } 
.sm{ display:none; }
 }

