@charset "UTF-8";

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*テンプレート専用cssファイルの読み込み

@import url("service.css");
@import url("top.css");
@import url("news.css");  
@import url("products2.css");
@import url("flex.css");
@import url("faq-2.css");
@import url("toptopics.css"); 
@import url("banner.css");
@import url("keisoku.css");
@import url("company-top.css");

---------------------------------------------------------------------------*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  color: #1f1f1f;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
iframe {
  vertical-align: bottom;
}
main {
  padding-top: 80px;
margin-bottom: 100px;
}

/* 下層ページのページヘッダー部 */
.page-header {
  margin-bottom: 80px;
  position: relative;
}
.page-header .img {
  height: 100%;
}
.page-header .img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.page-header .page-title-area {
  width: 100%;
  max-width: 450px;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
  padding: 0 4%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-header .page-title-area .page-title .en {
  display: block;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-header .page-title-area .page-title .ja {
  display: block;
  font-size: 20px;
  font-weight: 400;
}

/* 下層ページのページヘッダー下テキスト */
.head-text {
  font-size: 15px;
  line-height: 2;
  padding: 0 20px;
  margin-bottom: 80px;
  text-align: center;
}

/*-------------------------------------------
Header
-------------------------------------------*/
#header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;/*ヘッダーが他の要素よりも前面に表示されるように、z-indexプロパティに大きな値を設定します。 */
	border-bottom: solid 0.5px #ccc;
	box-shadow: 10px 0px 5px #888;
}
#header .logo {
  width: 100%;
  max-width: 220px;
  line-height: 0;
}
#header .logo a {
  display: block;
}



#header .navi .menu {
  display: flex;
  align-items: center;
  font-size: 14px;
}
#header .navi .menu > li {
	  position: relative; /* 子メニューの基準点とする */
		list-style: none;
  margin-left: 20px;
}
#header .navi .menu .menu-first {
  position: relative;
	
}



/* 親メニューのリンク */
#header .navi .menu .menu-first > li > a {
  display: block;
  padding: 15px;
  text-decoration: none;
}

#header .navi .menu .menu-first span {
  cursor: pointer;
 text-decoration: none;
	
}
#header .navi .menu .menu-first span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #1f1f1f;
  border-right: solid 1px #1f1f1f;
  margin: 0 auto;
  transform: rotate(135deg);
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}




#header .navi .menu .menu-first .menu-second {
  width: 140px;
  background-color: #fff;
  padding: 10px 20px;
  position: absolute;
  top: 50px;
  left: 0;
}
#header .navi .menu .menu-first .menu-second li {
  margin-bottom: 10px;
}



#header .navi .menu .menu-contact a {
  background-color: #1f1f1f;
  border-radius: 30px;
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 8px 30px;
  text-align: center;
	
}
#header .mask {
  display: none;
}

/*-------------------------------------------
プルダウンメニュー
-------------------------------------------*/

/* ナビゲーション全体のスタイル */
#header .navi .menu {
  display: flex; /* メニューを横並びにする */
  background-color: #fff;
	  list-style: none;
  padding: 0;
  margin: 0;
}

#header .navi .menu a:link, a:visited, a:hover, a:active {
  color: #000;
	  text-decoration: none;
}

/* 親メニューの項目 */
#header .navi .menu .menu-first > li {
  position: relative; /* 子メニューの基準点とする */
}

/* 親メニューのリンク */
#header .navi .menu .menu-first > li > a {
  display: block;
  padding: 15px;
  text-decoration: none;
}

/* 子メニュー（初期状態では非表示） */
#header .navi .menu .menu-first .menu-second {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%; /* 親メニューのすぐ下に配置 */
  left: 0;
  width: 200px; /* サブメニューの幅 */
  background-color: #fff;
  display: none; /* 非表示にする */
}

/* ホバー時の表示 */
#header .navi .menu .menu-first:hover >  .menu-second {
  display: block; /* ホバー時に表示 */
}

/* 子メニューのリンク */
#header .navi .menu .menu-first .menu-second li  a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
}

/* ホバー時の装飾 */
#header .navi .menu .menu-first .menu-second li a:hover {
  background-color: #777;
}
#header .navi .menu .menu-contact a {
  background-color: #1f1f1f;
  border-radius: 30px;
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 8px 30px;
  text-align: center;
	
}
#header .mask {
  display: none;
}




/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
  display: flex;
  justify-content: space-between;
  background-color: #1f1f1f;
  color: #fff;
  padding: 80px 5%;
}
#footer a {
  color: #fff;
}

#footer .footer-area {
flex-direction: column;
	  width: 100%;
}
#footer .info-area {
  width: 35%;
}
#footer .info-area .logo {
  width: 100%;
  max-width: 220px;
  display: block;
  line-height: 0;
  margin-bottom: 30px;
}
#footer .info-area .info {
  font-size: 11px;
  line-height: 1.8;
  margin-bottom: 30px;
}
#footer .info-area .copyright {
  font-size: 11px;
}
#footer .menu-area {
  width: 65%;
  display: flex;
  justify-content: flex-end;
}
#footer .menu-area .menu-col {
  width: 100%;
  max-width: 130px;
}
#footer .menu-area .menu-col .menu-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
}
#footer .menu-area .menu-col .menu-list li {
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 10px;
  margin-bottom: 1px;
}
#footer .menu-area .menu-col .menu-list li::before {
  content: "-";
  margin-right: 10px;
}

#footer.copyright-area {
	flex-direction: column;
}
#footer .copyrigh-areat p{

  background-color: #9a8865;
  color: #fff;
  font-size: 10px;
  padding: 20px 0;
  text-align: center;
}
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 1em;
  bottom: 1em;
  background: #3f98ef;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 60px;
  }
  main {
    padding-top: 60px;
  }

  /*-------------------------------------------
  Header
  -------------------------------------------*/
  #header {
    height: 60px;
  }
  #header .logo {
    max-width: 180px;
  }
  #header .navi {
    width: 80%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -120%;
    z-index: 20;
    transition: all 0.6s;
  }
  #header .navi.active {
    left: 0;
  }
  #header .navi .menu {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 60px 0;
    overflow: auto;
  }
  #header .navi .menu > li {
    width: 100%;
    border-top: solid 1px #1f1f1f;
    margin-left: 0;
  }
  #header .navi .menu > li a {
    width: 100%;
    display: block;
    padding: 20px;
  }
  #header .navi .menu .menu-first span {
    display: block;
    /*padding: 20px;*/
  }
  #header .navi .menu .menu-first span::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #1f1f1f;
    position: absolute;
    top: 30px;
    right: 20px;
  }
  #header .navi .menu .menu-first span::after {
    width: 1px;
    height: 15px;
    background-color: #1f1f1f;
    border: none;
    transform: none;
    position: absolute;
    top: 23px;
    right: 26px;
    left: auto;
  }
  #header .navi .menu .menu-first span.active::after {
    content: none;
  }
  #header .navi .menu .menu-first .menu-second {
    width: 100%;
    position: static;
    padding: 0 0 0 40px;
  }
  #header .navi .menu .menu-first .menu-second li {
    border-top: solid 1px #eee;
    margin-bottom: 0;
  }
  #header .navi .menu .menu-contact {
    padding: 30px 0;
  }
  #header .navi .menu .menu-contact a {
    max-width: 160px;
    margin: 0 auto;
  }
  #header .hamburger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 30;
  }
  #header .hamburger span {
    width: 30px;
    height: 1px;
    background-color: #1f1f1f;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
  }
  #header .hamburger.active span {
    background-color: #fff;
  }
  #header .hamburger span:nth-of-type(1) {
    top: 16px; 
  }
  #header .hamburger span:nth-of-type(2) {
    top: 25px;
  }
  #header .hamburger span:nth-of-type(3) {
    top: 34px;
  }
  #header .hamburger.active span:nth-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
  }
  #header .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header .hamburger.active span:nth-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
  }
  #header .mask.active {
    width: 100%;
    height: 100%;
    background: #000;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
  }
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  /* 下層ページのページヘッダー部 */
  .page-header {
    margin-bottom: 40px;
  }
  .page-header .img img {
    height: 240px;
  }
  .page-header .page-title-area {
    height: 70px;
    top: auto;
    bottom: 0;
  }
  .page-header .page-title-area .page-title .en {
    font-size: 24px;
  }
  .page-header .page-title-area .page-title .ja {
    font-size: 12px;
  }

  /* 下層ページのページヘッダー下テキスト */
  .head-text {
    margin-bottom: 40px;
  }

  /*-------------------------------------------
  Footer
  -------------------------------------------*/
  #footer {
    flex-direction: column-reverse;
    padding: 60px 20px;
  }
  #footer .info-area {
    width: 100%;
  }
  #footer .menu-area {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
  }
  #footer .info-area {
    text-align: center;
  }
  #footer .info-area .logo {
    margin: 0 auto 30px;
  }
	
	#footer .menu-area .menu-col .menu-list li {
display: none;
}

}