@charset "UTF-8" ;
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

  .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: -200px;
    left: calc(50% - 650px/2);
    width: 700px;
    font-size: 12px;
    background: #fff;
    padding: 1.2em;
    box-sizing: border-box;
    border: 1px solid #ddd;
    visibility: visible;
    transition: .5s;
    z-index: 1;
  }
  .cookie-consent.is-show {
    bottom: 30px;
  }
  .cookie-text {
    width: 90%;
  }
  .cookie-agree {
    color: #fff;
    background: dodgerblue;
    padding: .5em 1.5em;
  }
  .cookie-agree:hover {
    cursor: pointer;
  }
  /* パッと消える */
  .cc-hide1 {
    display: none;
  }
  @keyframes hide {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  /* メディアクエリ */
  @media screen and (max-width: 900px) {
    .cookie-consent {
      flex-direction: column;
      width: 300px;
      left: calc(50% - 300px/2);
    }
    .cookie-text {
      width: 100%;
      margin-bottom: 1em;
    }
  }


/* ハンバーガーメニューSTART */
.c-header {
  align-items: center;
  background-color: #eeeeee; /* カスタマイズしてください */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem; /* カスタマイズしてください */
  width: 100%;
}

.c-header__logo {
  color: #000; /* カスタマイズしてください */
  min-width: 80px; /* カスタマイズしてください */
  text-decoration: none;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link {
  color: #000; /* カスタマイズしてください */
  display: block;
  margin-right: 20px; /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 0px; /* カスタマイズしてください */
}

.c-header__list-link:hover {
  filter: opacity(0.20); /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: relative;
}

/* ---------------------------メインビジュアル----------------------- */

/* 背面画像の表示 */
.container{
	background-image: url("../img/mainvisual.jpg");
	background-position:center bottom; 
    background-size:cover;
    width: 100%;
    height: calc(100vh - 80px);/* ---100vhから90vhへ少し高さを狭くした--- */
    margin-bottom: 120px;/* 画像の下の開け */
}

/* 大きなタイトルの幅と位置 */
.firstview-lead{
	width: 650px;
	padding-top: 50px;
	margin-left: 150px;
}

/* 大きなタイトルのフォントサイズと装飾 */
.firstview-title{
	font-size: 60px;
  color: ffffff;
  text-shadow: 10px 10px 8px rgba(0, 0, 0, 0.5);/* 文字装飾 */

}

/* 子タイトルのフォントサイズと位置 */
.firstview-text{
	padding-top: 30px;
	font-size: 15px;
}

/* ---------------------------アバウト----------------------- */

#about {
  display: flex;
  margin-bottom: 120px;
}
#about .img {
  width: 55%;
}
#about .img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#about .text {
  width: 45%;
  padding: 0 5% 0 5%;
}
#about .text p {
  line-height: 2.2;
}


/*　------------------------共通-------------------　*/
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

.section-title {
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
}
/*
疑似要素を使って下線を引く
*/

.section-title::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  display: block;
}

.section-title .en {
  display: block;
  font-size: 2.25rem;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
.section-title .ja {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 36px;
}

/*
横幅を設定するための共通クラス
*/
.wrapper {
  width: 100%;
  max-width: 1032px;
  padding: 0 16px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.content-title {
  font-size: 1rem;
  margin: 10px 0;
}

/*
ボタン
「display: inline-block;」を設定して
paddingでボタンに幅と高さを持たせる。
*/
.btn {
  color: #2a2a2a;
  border: solid 1px #2a2a2a;
  display: inline-block;
  font-size: 0.750rem;
  padding: 14px 36px;
  margin-top: 30px;
}

.pos {
    text-align: center;
}

/* ---------------------------ビジネス----------------------- */

#business {
  margin-bottom: 120px;
}

#business ul {
  display: flex;
  justify-content: space-between;
}
#business li {
  width: 32%;
}

/*
疑似要素でタイトルの横線を引く
*/
#business .flex .title::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: -18px;
}

/* ---------------------------カンパニー----------------------- */
/*
テキストと画像はpositionを使って配置
子要素の「position: absolute;」で高さがなくなるため、
「height: 750px;」を指定して高さを確保
*/
#company {
  height: 750px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
}
#company .text {
  width: 55%;
  background-color: #fff;
  padding: 100px 8% 100px 6%;
  position: absolute;
  top: 0;
  left: 0;
}
#company .img {
  width: 53%;
  position: absolute;
  top: 115px;
  right: 0;
}
#company .img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#company .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#company .info dt {
  width: 20%;
  margin-top: 10px;
}
/*
1つめのdtにはmargin-topを設定しない
*/
#company .info dt:first-of-type {
  margin-top: 0;
}
#company .info dd {
  width: 80%;
  margin-top: 10px;
}
/*
1つめのddにはmargin-topを設定しない
*/
#company .info dd:first-of-type {
  margin-top: 0;
}
#company .info .add {
  margin-left: 20%;
}


/* ---------------------------ニュース----------------------- */
#news {
  margin-bottom: 120px;
}
#news .list {
  display: flex;
  justify-content: space-between;
}
/*
「width: calc(100%/3);」で横幅を3等分する
*/
#news .list li {
  width: calc(100%/3);
  border-right: solid 1px #000;
  padding: 10px 20px;
}
#news .list li:first-child {
  padding-left: 0;
}
#news .list li:last-child {
  border-right: none;
  padding-right: 0;
}
#news .list li .date-area {
  margin-bottom: 16px;
}
#news .list li .date-area span {
  width: 50px;
  height: 20px;
  line-height: 20px;
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  margin-left: 10px;
  text-align: center;
}

/* ---------------------------お問合せ----------------------- */
#contact {
  display: flex;
  margin-bottom: 120px;
}
#contact .img {
  width: 55%;
}
#contact .img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#contact .text {
  width: 45%;
  padding: 0 5% 0 5%;
}
#contact .text p {
  line-height: 2.2;
}


/* ---------------------------フッター----------------------- */
#footer {
  background-color: #eeeeee;
  font-size: 0.750rem;
}
#footer .flex-item {
  display: flex;
  justify-content: space-between;
  color: #000;
  padding-top: 50px;
  padding-bottom: 50px;
}
#footer .item {
  width: 33%;
  line-height: 2;
}
#footer .item:first-child {
  padding: 10px 0;
}
#footer .iso {
  width: 33%;
  line-height: 2;
  padding: 10px 10px;
}
#footer .iso .iso-text {
  font-size: 1rem;
  text-align: center;
}
#footer .item li {
  padding-left: 30%;
}
#footer .item li::before {
  content: "-";
  margin-right: 5px;
}

#footer .item a {
  text-decoration: none;
  color: #000;
}

#footer .item .title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align:center;
}
#footer .copyright {
  background-color: #fff;
  text-align: center;
  padding: 30px 0;
}

/* ---------------------------アバウトアスページ----------------------- */

/* ---------------企業理念----------------- */

.kigyou {
  background-color: #ffffff;
  padding: 60px 0;
}
.kigyou .sec-title {
  margin-bottom: 40px;
}
.kigyou .flex-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kigyou .item {
  width: 48%;
  text-align: center;
}
.kigyou .item img {
  width: 100%;
}
.kigyou .item p {
  margin-bottom: 30px;
  text-align: left;
}
.kigyou .item p:last-child {
  margin-bottom: 0;
}

/* ---------------営業目的----------------- */

.eigyou {
  background-color: #ffffff;
  padding: 60px 0;
}
.eigyou .sec-title {
  margin-bottom: 40px;
}
.eigyou .flex-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.eigyou .item {
  width: 48%;
  text-align: center;
}
.eigyou .item img {
  width: 100%;
}
.eigyou .item p {
  margin-bottom: 30px;
  text-align: left;
}
.eigyou .item p:last-child {
  margin-bottom: 0;
}

/* ---------------企業行動規範----------------- */

.kihan {
  background-color: #ffffff;
  padding: 60px 0;
}
.kihan .sec-title {
  margin-bottom: 40px;
}
.kihan .front {
  padding: 20px 0;
}
.kihan .number li{
  padding: 10px 0;
}
.kihan .rea {
  padding: 20px 0;
  text-align: right;
}

/* ---------------------------会社概要ページ----------------------- */

/* ---------------会社概要----------------- */
.gaiyou {
  background-color: #ffffff;
  padding: 60px 0;
}
.gaiyou .sec-title {
  margin-bottom: 40px;
}
.gaiyou .flex-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gaiyou .item {
  width: 48%;
  text-align: center;
}
.gaiyou .item img {
  width: 100%;
}
.gaiyou .item p {
  margin-bottom: 30px;
  text-align: left;
}
.gaiyou .item .pos2 {
  margin-bottom: 30px;
  text-align: center;
}
.gaiyou .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.gaiyou .info dt {
  width: 25%;
  margin-top: 10px;
}
.gaiyou .info a {
  color: #000000;
}
/*
1つめのdtにはmargin-topを設定しない
*/
.gaiyou .info dt:first-of-type {
  margin-top: 0;
}
.gaiyou .info dd {
  width: 75%;
  margin-top: 10px;
}
/*
1つめのddにはmargin-topを設定しない
*/
.gaiyou .info dd:first-of-type {
  margin-top: 0;
}
.gaiyou .info .add {
  margin-left: 20%;
}

/* ---------------事業所一覧----------------- */
.jigyousho {
  background-color: #ffffff;
  padding: 60px 0;
}
.jigyousho .sec-title {
  margin-bottom: 40px;
}
.jigyousho .sec-title2 {
  margin-bottom: 10px;
}
.jigyousho .map-data li {
  padding: 7px 5px;
}
.jigyousho .map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin-bottom: 20px;
}

/* ---------------主な納入先----------------- */
.nonyuu {
  background-color: #ffffff;
  padding: 60px 0;
}
.nonyuu .sec-title {
  margin-bottom: 40px;
}
.nonyuu .customer-data {
  display: flex;
  justify-content: space-between;
}
.nonyuu .customer-data li {
  width: calc(100%/3);
  padding: 7px 15px;
}

/* ---------------主な仕入先----------------- */
.shiire {
  background-color: #ffffff;
  padding: 60px 0;
}
.shiire .sec-title {
  margin-bottom: 40px;
}
.shiire .shiire-data {
  display: flex;
  justify-content: space-between;
}
.shiire .shiire-data li {
  width: calc(100%/3);
  padding: 7px 15px;
}

/* ---------------取引銀行----------------- */

.torihiki {
  background-color: #ffffff;
  padding: 60px 0;
}
.torihiki .sec-title {
  margin-bottom: 40px;
}
.torihiki .flex-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.torihiki .item {
  width: 48%;
  text-align: center;
}
.torihiki .item img {
  width: 100%;
}
.torihiki .item p {
  margin-bottom: 30px;
  line-height: 2;
  text-align: center;
}
.torihiki .item p:last-child {
  margin-bottom: 0;
}

/* ---------------------------沿革ページ----------------------- */

.enkaku {
  background-color: #ffffff;
  padding: 60px 0;
}
.enkaku .sec-title {
  margin-bottom: 40px;
  text-align: center;
}
.enkaku .sec-title2 {
  margin-bottom: 10px;
  text-align: center;
}
.enkaku .flex-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.enkaku .item {
  width: 100%;
  text-align: left;
}
.enkaku .item img {
  width: 100%;
}
.enkaku .item p {
  margin-bottom: 30px;
  text-align: left;
}
.enkaku .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.enkaku .info dt {
  width: 20%;
  margin-top: 10px;
}
/*
1つめのdtにはmargin-topを設定しない
*/
.enkaku .info dt:first-of-type {
  margin-top: 0;
}
.enkaku .info dd {
  width: 80%;
  margin-top: 10px;
}
/*
1つめのddにはmargin-topを設定しない
*/
.enkaku .info dd:first-of-type {
  margin-top: 0;
}
.enkaku .info .add {
  margin-left: 20%;
}

/* ---------------------------営業品目ページ----------------------- */
.hinmoku {
  background-color: #ffffff;
  padding: 60px 0;
}
.hinmoku .sec-title {
  margin-bottom: 40px;
}
.hinmoku p {
  padding-bottom: 30px;
}
.hinmoku ul {
  display: flex;
  justify-content: space-between;
}
.hinmoku li {
  width: 32%;
}

/* ---------------------------お問合せページ----------------------- */
.otoiawase {
  background-color: #ffffff;
  padding: 60px 0;
}
.otoiawase .sec-title {
  margin-bottom: 40px;
}

.button008 a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
}
.button008 a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #6bb6ff;
    transition: .3s;
    left:0;
}
.button008 a:hover {
    color: #FFF;
}
.button008 a:hover:before {
    width: 100%;
    z-index: -1;
}

.otoiawase .item a {
  text-decoration-color: #000000;
  color: #000000;
}

.otoiawase .item a:hover {
  opacity: 0.7;
}


.otoiawase .flex-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.otoiawase .item {
  width: 48%;
  text-align: center;
}
.otoiawase .item img {
  width: 100%;
}
.otoiawase .item p {
  margin-bottom: 30px;
  text-align: center;
}
.otoiawase .item p:last-child {
  margin-bottom: 0;
}

/* ---------------------------お問合せフォーム----------------------- */
.c-form {
  max-width: 100%;
  margin: 20 auto;
}
.c-form__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 20px;
}
.c-form__label,
.c-form__input {
  padding: 10px;
}
.c-form__label {
  width: 90%;
}
.c-form__input {
  width: 90%;
  font-size: 16px;
  border: solid 1px #333;
  border-radius: 4px;
}
.c-form__input:focus-visible {
  outline: blue auto 1px;
}
.c-form__required {
  color: #fff;
  background-color: blue;
  border-radius: 4px;
  padding: 5px 5px;
  margin: 0 0 0 18px;
}
textarea.c-form__input {
  height: 160px;
}
.c-form__submit {
  text-align: center;
}
.c-form__submit button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #808080;
  border: solid 1px #808080;
  border-radius: 4px;
  padding: 5px 32px;
  transition: 0.4s;
  cursor: pointer;
}
.c-form__submit button:hover {
  color: blue;
  background-color: transparent;
}

/* ---------------------------プライバシーポリシーページ----------------------- */
.privacy {
  background-color: #ffffff;
  padding: 60px 0;
}
.privacy a {
  color: #000000;
}
.privacy .sec-title {
  margin-bottom: 40px;
}
.privacy .front {
  padding: 20px 0;
}
.privacy .number li{
  padding: 15px 0;
}
.privacy .rea {
  padding: 20px 0;
  text-align: right;
}

/*　次ここから　*/


/* ---------------------------900px以下の幅　CSS----------------------- */
@media screen and (max-width: 900px) {
  .c-hamburger-menu__list {
    background-color: #eeeeee; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 900px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 32px; /* カスタマイズしてください */
    justify-content: center;
    width: 32px; /* カスタマイズしてください */
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000; /* カスタマイズしてください */
  display: block;
  height: 1px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 20px; /* カスタマイズしてください */
}

@media screen and (max-width: 900px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}
/* ハンバーガーメニューEND */

@media screen and (max-width: 900px) {
/* ---------------------------メインビジュアル----------------------- */
.container{
	margin-bottom: 80px;/* 画像の下の開け */
}

.firstview-lead{
	width: auto;
	padding-top: 30px;
	margin-left: 50px;
}

.firstview-title{
	font-size: 25px;
  color: ffffff;
  text-shadow: 10px 10px 8px rgba(0, 0, 0, 0.5);/* 文字装飾 */
}

.firstview-text{
	padding-top: 30px;
	padding-right: 5px;
	font-size: 15px;
}

/* ---------------------------アバウト----------------------- */
  #about {
    flex-direction: column;
    margin-bottom: 80px;
  }
  #about .img {
    width: 100%;
    margin-bottom: 30px;
  }
  #about .img img {
    height: 300px;
  }
  #about .text {
    width: 100%;
    padding: 0 16px;
  }

/* ---------------------------ビジネス----------------------- */

  #business {
    margin-bottom: 80px;
  }

  #business ul {
    flex-direction: column;
  }
  #business li {
    width: 100%;
    margin-bottom: 30px;
  }

/* ---------------------------カンパニー----------------------- */

  /*
  「position: static;」でrelativeを解除
  */
  #company {
    height: auto;
    flex-direction: column;
    position: static;
    margin-bottom: 80px;
  }
  /*
  「position: static;」でabsoluteを解除
  */
  #company .text {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 20px;
    position: static;
  }
  /*
  「position: static;」でabsoluteを解除
  */
  #company .img {
    width: 100%;
    padding: 0;
    position: static;
  }
  #company .info {
    flex-direction: column;
  }
  #company .info dt {
    width: 100%;
    margin-top: 20px;
  }
  #company .info dd {
    width: 100%;
    margin-top: 5px;
    padding-left: 14px;
  }
  #company .info dd:first-of-type {
    margin-top: 5px;
  }
  #company .info .add {
    margin-left: 0;
  }

/* ---------------------------ニュース----------------------- */
  #news {
    margin-bottom: 80px;
  }
  #news .list {
    flex-direction: column;
  }
  #news .list li {
    width: 100%;
    border-right: none;
    padding: 10px 0;
    margin-bottom: 20px;
  }
  #news .list li:last-child {
    margin-bottom: 0;
  }

  /* ---------------------------お問合せ----------------------- */
  #contact {
    flex-direction: column;
    margin-bottom: 80px;
  }
  #contact .img {
    width: 100%;
    margin-bottom: 30px;
  }
  #contact .img img {
    height: 300px;
  }
  #contact .text {
    width: 100%;
    padding: 0 16px;
  }

/* ---------------------------フッター----------------------- */
  #footer .flex-item {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #footer .item {
    width: 100%;
    margin-bottom: 30px;
  }

  #footer .item:first-child {
    text-align: center;
    padding: 0;
  }

  #footer .iso {
    width: 100%;
    text-align: center;
  }

  #footer .item {
    text-align: center;
    padding: 0;
  }

#footer .item li {
  padding: 0;
}


/* ---------------------------アバウトアスページ----------------------- */

/* ---------------企業理念----------------- */

  .kigyou {
    padding: 30px 0;
  }
  .kigyou .flex-item {
    flex-direction: column;
  }
  .kigyou .item {
    width: 100%;
  }
  .kigyou .item:first-child {
    margin-bottom: 60px;
  }

/* ---------------営業目的----------------- */

  .eigyou {
    padding: 30px 0;
  }
  .eigyou .flex-item {
    flex-direction: column;
  }
  .eigyou .item {
    width: 100%;
  }
  .eigyou .item:first-child {
    margin-bottom: 60px;
  }

/* ---------------------------会社概要ページ----------------------- */

/* ---------------会社概要----------------- */
  .gaiyou {
    padding: 30px 0;
  }
  .gaiyou .flex-item {
    flex-direction: column;
  }
  .gaiyou .item {
    width: 100%;
  }
  .gaiyou .item:first-child {
    margin-bottom: 60px;
  }
  .gaiyou .info {
    flex-direction: column;
  }
  .gaiyou .info dt {
    width: 100%;
    margin-top: 20px;
  }
  .gaiyou .info dd {
    width: 100%;
    margin-top: 5px;
    padding-left: 14px;
  }
  .gaiyou .info dd:first-of-type {
    margin-top: 5px;
  }
  .gaiyou .info .add {
    margin-left: 0;
  }

/* ---------------事業所一覧----------------- */
.jigyousho {
  background-color: #ffffff;
  padding: 30px 0;
}
.jigyousho .sec-title {
  margin-bottom: 40px;
}
.jigyousho .sec-title2 {
  margin-bottom: 10px;
}
.jigyousho .map-data li {
  padding: 7px 5px;
}
.jigyousho .map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  margin-bottom: 10px;
}

/* ---------------主な納入先----------------- */
.nonyuu {
  background-color: #ffffff;
  padding: 30px 0;
}
.nonyuu .sec-title {
  margin-bottom: 40px;
}
.nonyuu .customer-data {
  flex-direction: column;
}
.nonyuu .customer-data li {
    width: 100%;
    border-right: none;
    padding: 5px 0;
    margin-bottom: 0px;
}

/* ---------------主な仕入先----------------- */
.shiire {
  background-color: #ffffff;
  padding: 30px 0;
}
.shiire .sec-title {
  margin-bottom: 40px;
}
.shiire .shiire-data {
  flex-direction: column;
}
.shiire .shiire-data li {
    width: 100%;
    border-right: none;
    padding: 5px 0;
    margin-bottom: 0px;
}

/* ---------------取引銀行----------------- */

  .torihiki {
    padding: 30px 0;
  }
  .torihiki .flex-item {
    flex-direction: column;
  }
  .torihiki .item {
    width: 100%;
  }
  .torihiki .item:first-child {
    margin-bottom: 60px;
  }

/* ---------------------------沿革ページ----------------------- */
  .enkaku {
    padding: 30px 0;
  }
  .enkaku .flex-item {
    flex-direction: column;
  }
  .enkaku .item {
    width: 100%;
  }
  .enkaku .item:first-child {
    margin-bottom: 60px;
  }
  .enkaku .info {
    flex-direction: column;
  }
  .enkaku .info dt {
    width: 100%;
    margin-top: 20px;
  }
  .enkaku .info dd {
    width: 100%;
    margin-top: 5px;
    padding-left: 14px;
  }
  .enkaku .info dd:first-of-type {
    margin-top: 5px;
  }
  .enkaku .info .add {
    margin-left: 0;
  }

/* ---------------------------営業品目ページ----------------------- */
.hinmoku {
  background-color: #ffffff;
  padding: 60px 0;
}
.hinmoku .sec-title {
  margin-bottom: 40px;
}
  .hinmoku ul {
    flex-direction: column;
  }
  .hinmoku li {
    width: 100%;
    margin-bottom: 10px;
  }

/* ---------------------------お問合せページ----------------------- */
  .otoiawase {
    padding: 30px 0;
  }
  .otoiawase .flex-item {
    flex-direction: column;
  }
  .otoiawase .item {
    width: 100%;
  }
  .otoiawase .item:first-child {
    margin-bottom: 60px;
  }

/* ---------------------------お問合せフォーム----------------------- */
  .c-form__item {
    flex-wrap: nowrap;
  }
  .c-form__label {
    width: 45%;
  }
  .c-form__input {
    width: 55%;
  }

.c-form__input {
  font-size: 14px;
}
.c-form__submit button {
  font-size: 18px;
}

}

