@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  min-height: 1vh;
  position: relative;
  width: 100vw;

}

img {
  width: 60%;
  position: relative;
  z-index: 5;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

input{
  position: relative;
  z-index: 10;
}


/* テキストの縁取り */
.wrapper h3{
  text-shadow:
  1.5px 1.5px 0 #000,
  -1.5px 1.5px 0 #000,
  -1.5px -1.5px 0 #000,
  1.5px -1.5px 0 #000;
}

.wrapper p {
  text-shadow:
  1.3px 1.5px 0 #000,
  -1.3px 1.5px 0 #000,
  -1.3px -1.5px 0 #000,
  1.3px -1.5px 0 #000;
}

.wrapper label{
  text-shadow:
  1px 1px 0 #000,
  -1px 1px 0 #000,
  -1px -1px 0 #000,
  1px -1px 0 #000;
}


/* メインの余白 */
.main{
  padding: 60px;
  padding-left: 3px;
  padding-right: 3px;
}
/* -------------------- ハンバーガーメニューとナビゲーション -------------------- */

.nav-menu {
  margin: 0 0 0 auto;
}

.header_nav ul,
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header_nav ul li a,
.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.header .main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  flex-wrap: nowrap;
}

.header .main-nav ul li {
  display: inline-block;

}

.header .main-nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 1rem 1rem;
  position: relative;
  right: 70px;
}

.logo a {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  position: relative;
  left: 10%;
}

/* -------------------- ハンバーガーメニュー -------------------- */

.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 25px;
  cursor: pointer;
  position: relative;
  right: 60px;
  top: 10px;
  transform: translateY(-50%);
}

.menu-toggle {
  display: none;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: black;
  transition: all 0.3s ease;
  position: relative;
  left: 20px;
  background-color: white;
}



.nav-menu.mobile-nav {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  background-color: #333;
  position: absolute;
  top: 60px;
  right: 0;
  width: 200px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
}


.menu-toggle:checked ~ .mobile-nav {
  max-height: 500px;
}


.nav-menu.mobile-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu.mobile-nav ul li {
  text-align: left;
}

.nav-menu.mobile-nav ul li a {
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  text-decoration: none;
}
.nav-menu.mobile-nav ul li a img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.nav-menu.mobile-nav ul li a:hover {
  background-color: #444;
}

.nav-menu.mobile-nav ul li a img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}


/* -------------------- ヘッダー -------------------- */

.header {
  background-color: rgb(0, 0, 0);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  box-sizing: border-box;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
  width: 100vw;
  min-width: 100vh;
}

/* ナビゲーションスタイル */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
  padding: 0.5rem 1rem;
}

.main-nav ul li a:hover {
  color: #ffc;  /* hover時の色変化（お好みで） */
}




/* -------------------- メイン画像 -------------------- */

#main picture img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 95px;

}

/* .wrapper div{
  position: relative;
  z-index: 1;
} */

/* メインビデオ */
.wire_bond_video {
  position: fixed; 
  top: 0;
  left: 0px;
  height: 100%;
  right: 0;
  width: 100%; 
  opacity: 1;
  z-index: -2;
  object-fit: cover; 
}

.video-wrapper {
  min-height: 100vh;
  min-width: 100vh;
  background-size: cover;
  text-align: center;
  positon: relative;
  z-index: 10;
}




/* 背景のデザイン */

.back-ground-main-con{
  position:relative;
  background-color: rgb(107, 126, 118,0.6);
  max-width: 900px; margin: 0 auto;
  z-index: -1;
  bottom: 30px;
  text-align:  center; 
  object-fit: cover;
  border-radius: 35px;
  backdrop-filter: blur(3px);
  background-color: rgba(31,80,17, 0.238);
  box-shadow: rgba(0, 0, 0, 0.3) 2px 8px 8px;
  border: 6px rgba(255,255,255,0.4) solid;
  border-bottom: 6px rgba(40,40,40,0.35) solid;
  border-right: 6px rgba(40,40,40,0.35) solid;
}

/* タイトルセクション */
.title_main {
  text-align: center;
  margin: 100px 0 75px 0;
  position: relative;
  padding: 20%;
}

.title_main h1 {
  margin: 0 auto 75px auto;
  font-size: 5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 5px 8px 3px #313131;
  font-family: "Neuton", serif;
  font-weight: 700;
  font-style: normal;
}


/* .title_main h1{
  width: 100px;
  margin: 0 auto 75px auto;
  font-size: 1.7rem;
  text-align: center;
} */

/* -------------------- Aboutセクション -------------------- */

#about {
  max-width: 900px;
  margin: 0 auto 40px auto;
  position: relative;
  top: 100px;
  z-index: 1;
  color: #ececec;
  
  
}

#about h2 {
  width: 100px;
  margin: 0 auto 75px auto;
  font-size: 3rem;
  text-shadow: 3px 5px 3px #0c0c0c;
  font-family: "Neuton", serif;
  font-weight: 400;
  font-style: normal;

}

#about div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about div a {
  max-width: 80%;
  margin-bottom: 60px;
}

#about div a img {
  width: 500px;
  height: 500px;
  object-fit: contain;

}



/* -------------------- Worksセクション -------------------- */

#works {
  max-width: 900px;
  margin: 0 auto 170px auto;
  position: relative;
  z-index: 1;
  color: #ececec;
}

#works h2 {
  width: 100px;
  margin: 0 auto 75px auto;
  font-size: 3rem;
  text-shadow: 3px 5px 3px #0f0f0f;
  font-family: "Neuton", serif;
  font-weight: 400;
  font-style: normal;
}

#works div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#works div a {
  max-width: 80%;
  margin-bottom: 60px;
}

#works div a img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

/* -------------------- Newsセクション -------------------- */

#news {
  margin: 0 auto 135px auto;
  max-width: 860px;
  position: relative;
  z-index: 1;
  color: #ececec;
}

#news h2 {
  width: 100px;
  margin: 0 auto;
  font-size: 3rem;
  text-shadow: 3px 5px 3px #222222;
  font-family: "Neuton", serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 20px;
}

#news hr {
  margin: 20px 40px;
  max-width: 860px;
}

.content {
  display: flex;
}

.content h3 {
  margin-left: 55px;
  margin-right: 10%;
  font-weight: lighter;
}

.content p {
  margin-right: 55px;
}



/* -------------------- Contactフォーム -------------------- */

#form {
  max-width: 900px;
  margin: 100px auto 0 auto;
  z-index: 1;
  color: #ececec;
}

#form h2 {
  font-size: 3rem;
  margin: 0 auto 75px auto;
  width: 120px;
  text-shadow: 3px 5px 3px #080808;
  font-family: "Neuton", serif;
  font-weight: 400;
  font-style: normal;
}

#form dl {
  display: flex;
  flex-flow: row wrap;
}

#form dt {
  width: 15%;
  margin-bottom: 1.5rem;
  margin-left: 5%;
}

#form dd {
  width: 75%;
  margin-bottom: 0.5rem;
  margin-right: 5%;
}

#form dl input {
  width: 100%;
  height: 2rem;
}

#form textarea {
  width: 100%;
}

#form .btn {
  width: 200px;
  margin: 35px auto 0 auto;
}

#form .btn input {
  width: 200px;
  height: 50px;
  background-color: black;
  color: aliceblue;
  bottom: 10px;
}

#form .btn input:hover {
  color: black;
  background-color: white;
}

/* -------------------- フッター -------------------- */


.footer_cont{
  background-color: #000;
  position: relative;
  z-index: 50;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  padding-bottom: 1rem;
}

footer h3{
  color: #ffffff;
  text-align:right;
  font-size: 10px;
  position: relative;
  right: 1rem;
  top:0.5rem;
  padding:2px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.creater_name {
  position: relative;
  height: 1.5rem;
  background-color: black;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  text-align: center;
  z-index: 50;
}

#footer h4 {
  font-size: 0.5rem;
  color: aliceblue;
  width: 300px;
  margin: 0 auto;
  padding-top: 10px;
}

/* -------------------- レスポンシブ対応 -------------------- */


@media (max-width: 960px) {
  #about {
    width: 90%;
  }
}



  #works div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #works div a {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 30px;
  }

  /* .content {
    display: flex;
    flex-direction: column;
  }

  .content p {
    width: 80%;
    margin: 0 auto;
  } */

  @media screen and (max-width: 600px) {
    .main-nav ul {
      align-items: center;
      gap: 1rem;
    }
  
    .main-nav ul li a {
      font-size: 1rem;
    }
  }
  


/* -------------------- 個別ページなど -------------------- */



.single {
  margin: 0 auto;
}

.single h1 {
  font-size: 2.0rem;
  margin: 0 10% 30px 10%;
}

.single p {
  margin: 0 5% 60px 5%;
}


  /* グーグルフォーム */


 .contact-form {
  background: none;         
  box-shadow: none; 
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.iframe-wrapper {
  border-radius: 16px;
  overflow: hidden;
  max-width: 100%;
  position: relative;
  margin: 40px auto;
  border-radius: 60px;
  backdrop-filter: blur(11px);
  background-color: rgba(10,82,22, 0.408);
  box-shadow: rgba(0, 0, 0, 0.3) 2px 8px 8px;
  border: 6px rgba(255,255,255,0.4) solid;
  border-bottom: 6px rgba(40,40,40,0.35) solid;
  border-right: 6px rgba(40,40,40,0.35) solid;
}

.iframe-wrapper iframe {
  width: 100%;
  height: 900px;
  border: none;
  background: transparent;
  display: block;
  position: relative;
  top: 5rem;
}
