/* HP Ver2のスタイルシート */

@charset "UTF-8";

html,


* { 
    margin: 0px; /* ブラウザが持っているデフォルトの空白をなくす */
    padding: 0px; 
}


body {
  font-size: 20px;
  line-height:1.6em;
  font-family: 'Noto Sans JP', sans-serif;
  background:#9F737C;
  color: black;
}

/*  
background:#9F737C; 
color: black;
*/


*,
*::after,
*::before {
  box-sizing: border-box;
}


.logo_black{
   

}

.logo_white{
  display: none; 
}

#header1{
  display: block;
  width: 100%;
  max-width: 1440px;
   margin: 0 auto;
  padding: 0;
}

.header1_logo{
  display: inline-block;
  width: 70%;
  height: auto;
  margin-top: 12px;
  margin-bottom: 6px;
 }

#header2{
  display: none;
}

#header3{
  display: none;
}


.menu-trigger {
  display: none;
}

#menu-box{
  position: relative;
  z-index: 100;
}

#menu{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}
#menu li{
  display: block;
  float: left;
  width: 12.5%;
  margin: 0 auto;
  padding: 0; 
}
#menu li a{
  display: block;
  padding: 12px 0 10px;
  background: #333;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
#menu li a:hover{
  background: #444;
}


*,
*::after,
*::before {
  box-sizing: border-box;
}




#menu_underbar_box {
  display: none;
}


#title_text {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 50px;
  padding: 0;
  text-align: center;
}

#title_text a{
  font-size: 50px;
  font-weight: bold;
  padding-top: 0px;
  padding-bottom: 10px;
}








/*  (max-width: 768px)(max-width: 480px) */

 
@media only screen and (max-width: 940px) {

    #home_image{
    margin-top: 125px;
    }

    #menu li{
    width: 25%;
    border-bottom: 1px solid #444;
    }



    #title_text {
      margin-top: 130px;
    }




}




/* （モバイル用） */

@media only screen and (max-width: 768px) {

  #header1{
    display: none;
   }
  

  #header2{
    display: block;
    margin-left: 2%;
    height: 78px;
   }

  .header2_logo{
    display:inline-block;
    width: 330px;
    margin-top: 22px;
   }

  #header3{
    display: none;
   }




  #menu{
    display: none;
    position: absolute;
  }


    .menu-trigger {
    display: inline-block;
    position: absolute;
    margin-right: 5%;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    z-index: 100;
    top: 20px;
    right: 2px;
    }

	.menu-trigger span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
 
	background-color: #000;
	transition: all .5s .2s;
	}
	.menu-trigger.active span {
	background-color: #fff;
	}
	.menu-trigger span:nth-of-type(1) {
	top: 0;
	}
	.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(12px) rotate(-45deg);
	}
	.menu-trigger span:nth-of-type(2) {
	top: 12px;
	}
	.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
	}
	.menu-trigger span:nth-of-type(3) {
	bottom: 0px;
	}
	.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-12px) rotate(45deg);
	}

        .menu-trigger a {
        display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0px;
	width: 100%;
	height: 4px;
        margin-top: 20px;         
        font-size:  12px;
        transition: all .5s .2s;
        }

        .menu-trigger.active a {
	opacity: 0;
	}
        
         .menu-trigger p {
        display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0px;
	width: 100%;
	height: 4px;
        margin-top: 20px;         
        font-size:  12px;
        right: 1px;
        opacity: 0;
        transition: all .5s .2s;
        }

        .menu-trigger.active p {
        opacity: 1;
        color: #fff;
	}




   #menu li{
    width: 90%;
    margin-left: 5%;
    opacity: 0.7;
   }



  #menu_underbar_box {
    display: block;
    position: relative;
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
    margin-top: -10px;
    padding: 0;
    border-top: solid 5px black;

  }  

  
  #title_text {
    margin-top: 30px;
  }

  #title_text a{
    font-size: 40px;
  }



}


@media only screen and (max-width: 380px) {

  #header1{
    display: none;
   }
  
  #header2{
    display: none;
   }

  #header3{
    display: block;
    margin-left: 2%;
    height: 78px;    
   }

  .header3_logo{
    display:inline-block;
    width: 234px;
    margin-top: 22px;
   }
}





.footerFixed{
    min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
    position: relative;/* ←相対位置 */
    padding-bottom: 60px; /* ←フッターの高さを指定 */
    box-sizing: border-box;
    /* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
}

footer {
  position: relative;
  bottom: 55px;
  width: 100%;

  font-size: 15px;
  text-align: center;
  padding: 20px 0;

}





/*    border: solid;
  border-color: green; */

/*
    .menu-trigger-box {
    display: inline-block;
    position: fixed;
    margin-right: 5%;
    width: 48px;
    height: 48px;
    top: 16px;
    right: -4px;

  height: 60px; 
    border: 1px solid; /* 線の太さと可視化 */
    border-color: #000;
    border-top-left-radius: 8px; /* 左上を角丸に */
    border-top-right-radius: 8px; /* 右上を角丸に */
    border-bottom-left-radius: 8px; /* 左下を角丸に */
    border-bottom-right-radius: 8px; /* 右下を角丸に */
    }
*/
