@charset "utf-8";

* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background-color: #ede3da;
}
label, input, textarea, select, button {
  cursor: pointer;
}

.borderbox {
  height: 100px;
  background-color: #ede3da; 
  border-top: solid 1px #5b5b5b;
  border-bottom: solid 1px #5b5b5b;
  margin-bottom: 20px;
  text-align: center;
}
.borderbox img {
  height: 100px;
}
/*==================================================

hearder #5b5b5b  brown #1E110E #ede3da

===================================*/
header {
  height: 90px;
  /* width: 100%; */
  padding-bottom: 5px;
  background-color: #ede3da;
  border-bottom: solid 1px #333;
  position: relative;
  margin-bottom: 20px;
  top: 0;
  z-index: 10;
  display: flex;
}
.header_container {
  width: 1024px;
  display: flex;
  justify-content: space-between;
  margin: auto;
  align-items: flex-end;
  height: 90px;
}
/* -----------header logo area ------------*/
.header .header_logo {
  display: block;
}
.header_logo {
  display: flex;
  align-items:end;
}
.header_logo img {   
  height: 60px;
  width: auto;
}
.header_logo_text {
  margin-left: 10px;
}
.header P {
  margin-right: auto;
  padding-left:10px;
}
.header_text {
  display: inline-block;
  margin-right: 550px;
}

/* ==========================================
header hamberger css
hamburge icon sm

============================================= */
.sm {
  margin: 0 0 0 auto;
}
.pc {
  margin: 0 0 0 auto;
}
.sm_box {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sm_box a {
  /* color: #ede3da; */
  color: #ffffff;
  text-decoration: none;
  display: block;
  line-height: 60px;
  padding: 0 20px;
}

.pc_box {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc_box a {
  color: #333;
  text-decoration: none;
  display: block;
  line-height: 30px;
  padding: 0 20px;
}
.sm  {
  display: none;
  /* background-color: #25b327; */
  /*ハンバーガーメニューのリスト（スマホ用）を非表示*/
}


/**********************************　
以下、ハンバーガーメニューの設定　
************************************/

@media (max-width: 768px) {
  body {
    font-size: 16px; 
  }
  .pc {
    display: none;	/*ヘッダーのグローバルメニューのリスト（パソコン用）を非表示*/
  }
  #hamburger {
    background-color: transparent;  /* 透明の背景 */
    position: relative;             /*ハンバーガーの横線の位置を決めるための基準*/
    cursor: pointer;                /*リンクを示すカーソルを表示（指差しマーク）*/
    margin: 0 0 0 auto;             /* 左側に余白を作り、ハンバーガーメニューを右端に配置 */
    height: 60px;                   /*ヘッダーの高さと同じ60px*/
    width: 60px;                    /*高さと同じ幅*/
  }
  .icon span {
    position: absolute;       /*親要素である#hamburgerを基準に位置を指定*/
    left: 15px;               /*#hamburger内の左がら15pxに横線を配置（幅が60pxなので右からも15px）*/
    width: 30px;              /*横線の幅が30px*/
    height: 4px;              /*横線の高さが4px*/
    background-color: #444;  /*横線を白色*/
    border-radius: 8px;       /*横線の両端の角に丸みを持たせる*/
    transition: ease 0.75s;   /*変化の時間（easeは初期値）*/
  }
  .icon span:nth-of-type(1) {
    top: 16px;
  }
  .icon span:nth-of-type(2) {
    top: 28px;
  }
  .icon span:nth-of-type(3) {
    bottom: 16px;
  }
  .close span:nth-of-type(1) {
    transform: rotate(45deg); /*反時計回りに45度回転*/
    top: 28px;
  }

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

  .close span:nth-of-type(3) {
      transform: rotate(-45deg); /*時計回りに45度回転*/
      top: 28px;
  }
  .sm {
    top: 60px;  /*headerの余白分*/
    left: 0px;  /*headerの余白分　ヘッダーには左右に15px余白があるので、headerの子要素となる.smは15px分内側に設置されます。その余白を埋めるために左に寄せる。*/
    position: absolute; /*絶対配置　top　leftからの位置を絶対配置する*/
    z-index: 10;
    width: 100%;
    background-color: rgba(34, 49, 52, 0.9);
  }
  ul {
    flex-direction: column;	/*ulのflexboxを縦並びにする*/  
  }

}
/* ==========================================
footer
============================================= */
/* --------------------------------------- */
.new_footer {
  width: 70%;
  margin: 0 auto;
}
.new_footer_container {
  line-height: 1.6;
  /* background-color: antiquewhite; */
  /* border: 1px solid black; */
}
.new_footer_itembox {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
}
.new_footer_item {
  width: 25%;
  flex-wrap: wrap;
  margin: 10px;
}
.new_footer_logo {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
}
.new_footer_icon {
  width: 15px;
}

@media screen and (max-width: 480px) {
  .new_footer_container {
    width: 100%;
    /* background-color: pink; */
  }
  .new_footer_item  {
    width: 100%;
  }

}

/*==================================================
main start
===================================*/
.wrapper {
  /* background-color: pink; */
  width: 1024px;
  max-width: 1024px;
  margin: 0 auto;
}
.container {
  display: flex;
  flex-wrap: wrap;
  /* height: 600px; */
  justify-content: space-between;
  /* background-image: url(goods/goods_1/npote1.jpg); */
  background-size: cover;
  background-repeat: no-repeat;/*画像が繰り返すのを防ぐ*/
}
.featuretop {
  margin-bottom: 30px;
}
.section-1 {
  margin-top: 50px;
}
.featuretop img{
  width: 100%;
}
.featuresecond-box {
  width: 700px;
  margin-left: 20px;
}
.section-1 {
  margin: 20px auto;
  display: flex;
}
.col-img img {
  width: 400px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.section-memo {
  font-size: 14px;
  margin-left: 20px;
}
.section-left {
  width : 420px;
}
.section-right {
  padding: 20px;
  flex: 1;
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.sub-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* ================================
main or footer      media screen
=================================== */
@media screen and (max-width: 480px) {
  .container {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    background-size: cover;
    background-repeat: no-repeat;/*画像が繰り返すのを防ぐ*/
  }
  .section-1 {
    /* display: flex; */
    /* background-color: pink; */
    margin: 0 auto;
  }




  .new_footer_container {
    width: 100%;
    /* background-color: pink; */
  }
  .new_footer_item  {
    width: 100%;
  }

}
/*==================================================
feature
===================================*/
.feature_container  {
  background-color: #ede3da;
  max-width: 1024px;
  margin: 0 auto 50px;
  /* border: solid 1px  #5b5b5b; */
  border-radius: 10px;
}
.feature_title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
}
.feature_content {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.feature_box {
  width: 330px;
  margin:5px;
  /* border: solid 3px  #5b5b5b; */
}
.feature_image {
  width: 330px;
  height: auto;
}

/*==================================================
info

info_box  

info_card
info_label 
info_image
info_info
info_time
info_hedline
info_text
===================================*/  
.info_container  {
  /* border: solid 1px  #5b5b5b; */
  background-color: #ede3da;
  max-width: 1024px;
  margin: 0 auto 50px;
  /* border: solid 1px  #5b5b5b; */
  border-radius: 10px;
}
.info_title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
}
.info_content {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.info_item {
  width: 330px;
  /* border: solid 1px  #5b5b5b; */
}
.info_box {
  margin:5px;
}
.info_image {
  width: 330px;
  height: auto;
}

/* ========================
各種set link start
=========================== */
.setlink_container  {
  background-color: #ede3da;
  max-width: 1024px;
  margin: 0 auto 50px;
  /* border: solid 1px  #5b5b5b; */
  border-radius: 10px;
}
.setlink_title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
}
.setlink_content {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.setlink_box {
  width: 330px;
  margin:5px;
  /* border: solid 3px  #5b5b5b; */
}
.setlink_image {
  width: 330px;
  height: auto;
}

/* ====== table======== */
table , td, th {
	border: 1px solid #595959;
	border-collapse: collapse;
}
td, th {
	padding: 3px;
	width: 300px;
	height: 25px;
}
th {
	background: #f0e6cc;
}
.even {
	background: #fbf8f0;
}
.odd {
	background: #fefcf9;
}
.table-1 {
  width: 100px;
}
.table-2 {
  width: 50px;
}
.table-3 {
  width: 200px;
}