@charset "utf-8";
/* CSS Document */

body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: Medium;
  font-style: normal;
	}



/*ハンバーガーメニュー設定*/
.logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

.logo img {
  width: 100px;
  height: auto;
}
		
#headImage{			
	position: relative;		
}			
			
			
#headImage img{			
width: 100%;			
}			

header {
  position: relative;
}

#headImage {
  width: 100%;
}

#headImage img {
  width: 100%;
  height: auto;
}


/*ハンバーガーメニューcss*/


.hamburger-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
  width: 60px;
  height: 10px;
  padding: 10px;
}

.hamburger-menu span {
  display: block;
  width: 60px;
  height: 8px;
  margin-bottom: 15px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 3.0px;
}

.hamburger-menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(16px, 16px);
}

.hamburger-menu.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(16px, -16px);
}

.slide-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: #006aa7;
  opacity: 0.9;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  
}

.slide-menu.open {
  right: 0;
}


.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  padding-top: 100px;
}

.menu-section {
  margin-bottom: 60px;
  text-align: center;
}

.menu-section a{
  display: inline-block;
  text-decoration: none;
  color:#fff;
  transition:0.3s;
  transform: scale(1);
}

.menu-section a:hover{
   transform: scale(1.3);
}

.menu-section h2 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 35px;
  color: #fff;
}

.menu-section ul {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
}

.menu-section li {
  margin-bottom: 5px;
  color: #fff;
  font-size: 25px;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.image-gallery a:hover{
opacity: 0.6;
}


.image-gallery img {
 width:50px;
 height:50px;
}

#logo_a:hover{
	opacity: 0.6;
}

/**/

h1{
	position: absolute;
	top:400px;
	left:50px;
	font-size: 200px;
	color: #fff;
}

#midashi{
	font-weight: bold;
	font-size: 48px;
	margin-top: 150px;
	text-align: center;
	font-family: "tbudrgothic-std", sans-serif;
    font-style: normal;
    color:#656565;
}

h3{
	font-family: "shelby", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 42px;
	margin-top: 20px;
	color: #898989;
	text-align: center;
}

.p_textarea{
	width:1050px;
	margin: 50px auto;
}

p{
	font-size: 28px;
	line-height: 1.5;
	font-family: "tbudrgothic-std", sans-serif;
font-weight: 400;
font-style: normal;
}

.slide-items{
	width:1050px;
	height: 500px;
	margin:0 auto;
}

.slide-items img{
   width: 100%;
   object-fit: cover;
}





/*モーダルウィンドウ設定*/
#modal_section{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 130px;
}


span{
	font-size: 20px;
	font-weight: bold;
}


/*モーダルウィンドウ*/

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  width: 500px;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-trigger {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.modal-trigger:hover {
  opacity: 0.6;
}


.modal p{
	font-size: 16px;
}




/*モーダルウィンドウ設定ここまで*/



footer{
	width: 100%;
	height: 220px;
	background-color: #006aa7;
	margin-top: 220px;
	border: solid 1px #006aa7;
}

#icons{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 20px;
   margin: 50px auto;
   text-align: center;


}

#icons a:hover{
	opacity: 0.6;
}



#copy{
	text-align: center;
	font-size: 18px;
	color: #fff;
}



/*スクロール設定*/
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 2s;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}