@charset "UTF-8";
/* CSS Document */

*, *:before, *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.clearfix::after {
content:'';
display:block;
clear:both;
}
html {
font-size: 62.5%;
scroll-behavior: smooth;
}
body{
font-size: 1.4rem;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
font-feature-settings: "palt";
line-height:1.8;
letter-spacing:0.1rem;
text-align: justify;
text-justify: inter-ideograph;
}
a,a:hover{
text-decoration: none;
}
a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-color: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: transform ease 0.4s;
}
a,a:hover,a:visited{
    color: inherit;
}

ul,li{
list-style: none;
padding: 0;
}
li{
display: inline-block;
}
.contents-box{
max-width: 1200px;
margin: auto;
padding: 0 15px;
}
@media (max-width: 768px) {
.pc-dn {display:block;}
.sp-dn {display:none;}
}
@media (min-width: 769px) {
.pc-dn {display:none;}
.sp-dn {display:block;}
}



/*---ナビゲーション----*/
.navigation{
display: flex;
padding: 5rem 3rem;
position: relative;
}
.navigation img{
width: 200px;
}

.gnavi{
position: absolute;
top:4rem;
right: 2rem;
list-style: none;
}

.gnavi li a{
    padding:10px 30px;
    text-decoration: none;
    color: #000;
}

.gnavi li{
    margin-bottom:20px;
}

.gnavi li a{
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#0481A2;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top: 4rem;
    left: 0;
    /*線になる丸の形状*/
    width: 100%;
    height: 5px;
    border-radius: 50%;
    background:#004da0;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0.04, 1);/*X方向0.04、Y方向1*/
    transform-origin:center bottom;/*中央下部基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    height: 2px;/*縦幅を変化*/
    border-radius: 0;/*丸みをなくす*/    
    transform: scale(0.8, 1);/*X方向0.8、Y方向1にスケール拡大*/
}




/*========= ハンバーガー ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#000;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;    
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
    display: block;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
	top:15px;	
}

.openbtn1 span:nth-of-type(2) {
	top:23px;
}

.openbtn1 span:nth-of-type(3) {
	top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}





/* 019 */
.button019 a {
background: #910000;
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 auto;
max-width: 280px;
padding: 10px 25px;
color: #fff;
transition: 0.3s ease-in-out;
font-weight: 500;
letter-spacing: 0.3rem;
font-family: 'Zen Kaku Gothic New', sans-serif;
}

.button019 a:hover {
  background: #000;
  color: #FFF;
}
.button019 a:hover:after {
  right: 1.4rem;
}



/*--------フッター----------*/
.footimg{
background-image: url("/img/foot01.jpg");
background-size: cover;
background-repeat: no-repeat;
height: 300px;
}


#footer02 {
  background: #222;
}

 
.logo{
  padding-left: 5rem;
} 
.logo img{
  display: inline-block;
  width: 180px;

}
#footer02 .nav li a {
  padding: 15px;
  color: #FFF;
}
 
.iconbox2{
padding-right: 3rem;
}
.iconbox2 img{
width: 40px;
padding: 0 0.4rem;
} 
  
.inner-block{
padding-top: 6rem;
}   
  
.copyright{
text-align: center;
color: #fff;
padding: 5rem 0;
}  
  
  
  
@media only screen and (max-width: 1000px) {
.footimg{
background-size: 100%;
height: 150px;
top: 0;
}

.logo{
padding-bottom: 2rem;
}
.iconbox2{
text-align: center;
padding: 2rem 0;
}

.nav{
padding-top: 1rem;
align-items: center;
display: block;
}


#footer02 {
padding: 0;
}
#footer02 .logo {
padding: 0;
text-align: center;
}
#footer02 .inner-block {
padding: 0;
}

.ie #footer02 .logo img,
#footer02 .logo {
display: block;
margin: 0;
text-align: center;
}

#footer02 .c-btn {
margin-bottom: 20px;
}

#footer02 .nav {
font-size: 0.8rem;
text-align: center;
margin: 0 auto;
}

#footer02 .nav li a {
padding: 12px 12px;
display: block;
background-size: 5px auto;
}

#footer02 .nav li:last-child {

}
#footer02 .nav li a:hover {
color: #ca353b;
}

  
.inner-block{
padding-top: 3rem;
}   
  
.copyright{
padding: 2rem 0;
}  
  
}


   
@media screen and (min-width: 641px) {

 
  #footer02 .wrap {
    padding: 20px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
 
  #footer02 .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
 
  #footer02 .nav {
    display: inline-block;
    text-align: center;
  }
 
  #footer02 .nav li {
    display: inline-block;
  }
 
  #footer02 .nav li a:hover {
    color: #ca353b;
  }
}




















