/*****************************
共通部分
*****************************/
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #232323;
}

a {
  text-decoration: none;
  color: #232323;
}

a:hover {
  opacity: .7;
}


img {
  max-width: 100%;
}


/* 全てのセクションタイトル */
.section-title {
  justify-content: center;
  text-align: center;
  color: #0099FF;
  font-size: 40px;
  border-bottom: 10px solid #FFCC33;
  margin: 0 auto 70px;
  width: 300px;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 33px;
  }
}

/*****************************
ヘッダーナビゲーション
*****************************/
.nav {
  width: 97%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
}

.nav-container {
  display: flex;
  position: fixed;
  z-index: 2;
  justify-content: space-between;
  background-color: #dbdbb3;
  border-radius: 10px;
  align-items: center;
  height: 70px;
  width: 97%;
  max-width: 100%;
  top: 10px;
  padding: 0 18px 0 18px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.5);
}

.menu_logo {
  display: flex;
  align-items: center;
}


.menu_logo div {
  width: 200px;
}

.menu_logo img {
  width: 50px;
  height: auto;
}

.menu_logo p {
  font-family: "Nico Moji";
  margin-left: 10px;
  font-size: 33px;
}

ul {
  list-style: none;
  padding: 0;
  display: flex;
  text-align: right;
}

.hamburger-menu {
  display: flex;
}

.hamburger-menu-list-group li {
  margin-left: 12px;
  font-size: 16px;
}

.hamburger-menu a {
  position: relative;
}

/*ナビをhover時に下線を出す*/
@media (min-width: 769px) {
  .hamburger-menu-list-group a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #110c0c;
    bottom: -1px;
    /*アンダーラインが位置する、各リストの下端からの高さ　ヘッダーの下端に合わせています*/
    visibility: hidden;
    /*ホバー前に、アンダーラインを可視化しない*/
  }
}

/* @media (max-width: 768px) {
  .hamburger-menu-list-group:hover::after {
    background-color: #030202;
  }
} */

/*ホバー後、アンダーラインを可視化する*/
.nav a:hover::after {
  visibility: visible;
}


/* ハンバーガーボタン */
.hamburger-button {
  width: 4.75rem;
  height: 4rem;
  font-size: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-button i {
  line-height: 0;
}


@media (min-width: 769px) {
  .hamburger-button {
    display: none;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 5rem);
    background-color: #fff;
    transition: all 0.6s;
    transform: translateX(100%);
  }
}

/* アクティブ状態 */
.hamburger-menu-active {
  transform: translateX(0);
}

/* ナビゲーション */
@media (max-width: 768px) {
  .hamburger-menu-list-group {
    display: table;
    width: 100vw;
    font-size: 1.875rem;
    border-top: 0.0625rem solid #000;
  }
}

@media (max-width: 768px) {
  .hamburger-menu-list-group a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.72rem 2rem;
    line-height: 1;
    border-bottom: 0.0625rem solid #000;
  }

  .hamburger-menu-list-group li:nth-child(4) a,
  .hamburger-menu-list-group li:nth-child(5) a {
    padding: 1.5rem 2rem 1.95rem;
  }

  .hamburger-menu-list-group li:nth-child(4) a::after,
  .hamburger-menu-list-group li:nth-child(5) a::after {
    padding-top: .25rem;
  }
}

/*****************************
メイン
*****************************/
.cover-container {
  display: flex;
  flex-direction: column;
}

.cover-slick-item img {
  margin-left: auto;
  border-bottom-left-radius: 100px;
  width: 93%;
  max-width: 100%;
  height: 90%;
}

.cover-slick {
  position: relative;
}

.cover_visual {
  background-color: #fff;
  padding: 14px;
  font-size: 20px;
  border-radius: 20px;
  top: 270px;
  right: 260px;
  z-index: 1;
  position: absolute;
  opacity: 0.8;
}

.cover_servise {
  font-size: 20px;
  font-weight: bold;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .cover-slick-item img {
    margin-top: 80px;
    height: 90%;
  }

  .cover-slick {
    position: relative;
  }

  .cover_visual {
    font-size: 12px;
    top: 140px;
    right: 18px;
    position: absolute;
  }

  .cover_servise {
    font-size: 11px;
    text-align: center;
    padding-left: 110px;
  }
}

/*****************************
サービスの流れ
*****************************/
.about {
  padding: 50px 0;
  background-color: #f3f3b8;
  margin-bottom: 30px;
}

.about-box {
  width: 720px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-container {
  text-align: left;
}

.about-img {
  width: 250px;
  height: 250px;
  position: relative;
}

.about-img img {
  width: 230px;
  height: 200px;
}

.about-img div {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: red;
  color: #fff;
  text-align: center;
  line-height: 30px;
  position: absolute;
  top: -10px;
  left: -10px;
  font-weight: 700;
}

.about-cotent {
  width: 500px;
  max-width: 100%;
  padding-left: 20px;
  box-sizing: border-box;
}

.about-title {
  font-size: 20px;
  margin: 0;
  margin-bottom: 16px;
}

.about-item {
  margin: 0;
}


.first-about,
.second-about,
.third-about {
  display: flex;
}

@media screen and (max-width: 768px) {
  .about-container {
    justify-content: center;
  }

  .first-about,
  .second-about,
  .third-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 80px;
  }

  .about-img {
    margin: 0 auto;
  }

  .about-cotent {
    padding-right: 18px;
  }
}

/*****************************
処分方法
*****************************/
.dispose-box {
  display: flex;
  justify-content: center;
  padding: 0 80px;
}

@media screen and (max-width: 768px) {
  .dispose-box {
    flex-direction: column;
    margin: 0 15px;
    padding: 0;
  }
}

.dispose-group {
  margin: 0 auto;
  width: 780px;
  max-width: 100%;
}

.dispose-group h3 {
  font-size: 30px;
}


.dispose-image {
  margin: 20px auto 0 0;
}

.dispose-image img {
  width: 400px;
  height: 250px;
}

.dispose-page {
  margin: 30px auto;
  width: 330px;
  padding: 10px;
  background-color: #8cc5eb;
  border-radius: 3px;
  text-align: center;
  font-weight: 700;
}

.dispose-page:hover {
  background-color: #b6afcf;
}

/*リサイクルの知識ページ*/
.dispose-detail {
  width: 100%;
  max-width: 100%;
  /* height: 700px; */
  background-image: url('../image/11.png');
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 20px;
}

.dispose-text {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 0 10px;
}


.dispose-text h1 {
  font-size: 30px;
  width: 290px;
  color: #fff;
  background-color: #535353;
  text-align: center;
}

/*****************************
お問い合わせボタン
*****************************/
.contact-container {
  max-width: 100%;
  background-color: rgba(0, 121, 242, 0.05);
  padding-top: 1.45rem;
  padding-bottom: 1.6rem;
  background: repeating-linear-gradient(135deg, #f7f3f8, 20px, #fff 20px, #fff 40px);
}

.contact-description {
  text-align: center;
}


/* ピンクボタン */
.button-pink {
  display: flex;
  width: 17.5rem;
  height: 59px;
  margin-bottom: 10px;
  padding: 0rem 3px 0.2rem 4px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #ec74b2;
  font-size: 20px;
  border-radius: 3rem;
  text-shadow:  1px 2px 3px #f3f2f2;
}

/*****************************
よくあるご質問
*****************************/
.questions {
  padding-left: 16px;
  padding-right: 20px;
}

.questions .container {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 100px;
  justify-content: center;

}

.accordion-group {
  display: flex;
  flex-direction: column;
  row-gap: 19px;
  margin-top: -6px;
}


.accordion {
  border: 2px solid #13be7d;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  width: 600px;
  max-width: 100%;
}


/* アコーディオンのタイトル部分 */
.titlebox {
  display: flex;
  padding-top: 10px;
  padding-bottom: 13px;
  position: relative;
}

.accordion-title {
  border-radius: 8px;
  width: 700px;
  max-width: 100%;
  padding: 5px 8px 6px 7px;
  margin: 0;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
}


/* 下向き矢印 */
.titlebox::after {
  font-family: "bootstrap-icons";
  color: #eca91f;
  content: "\F229";
  display: block;
  position: absolute;
  right: 13px;
  top: 13px;
}

.open.titlebox::after {
  top: 13px;
  right: 13px;
  transform: rotate(180deg);
  /*矢印を上向きに変える */
}


/* アコーディオンのコンテンツ部分 */
.accordion-content {
  display: none;
  /* 初期状態は非表示 */
  flex-direction: row;
  border-radius: 0 0 8px 8px;
  padding: 6px 4px 6px 3px;
  font-size: 15px;
  background-color: #ffeee5;
}


/* 初期状態を表示するとき用のクラス */
.accordion-content-active {
  display: flex;
  flex-direction: row;
  padding: 0;
}

.q-mark {
  color: #f26618;
  background-color: #ffeee5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  margin: 5px 5px 5px 15px;
  padding-top: 2px;
}

.a-mark {
  color: #fff;
  background-color: #f26618;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  margin: 9px 1px 7px 12px;
  padding-top: 4px;
}

.accordion-content-anser {
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  margin: 10px 0 13px 11px;
}

@media screen and (max-width: 768px) {
  .accordion-title {
    width: 81%;
    padding-right: 22px;
  }
}

/*****************************
お客様の声
*****************************/
.customer,
.customer-voices {
  width: 100%;
  max-width: 100%;
  background-color: rgb(245, 234, 234);
  padding: 100px 0;
}

.customer .container,
.customer-voices-item {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

.customer-box {
  display: flex;
  padding: 10px 0;
  padding: 5px 0;
}

@media screen and (max-width: 768px) {
  .customer-box {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
  }
}

.customer-date {
  width: 20%;
  padding: 10px 0;
  border-bottom: 1px dotted #232323;
}

@media screen and (max-width: 768px) {
  .customer-date {
    border-top: 2px dotted #232323;
    width: 100%;
  }
}



.customer-title {
  width: 70%;
  padding: 10px 0;
  border-bottom: 1px dotted #232323;
}

@media screen and (max-width: 768px) {
  .customer-title {
    width: 100%;
    border-bottom: none;
  }
}


.customer-img {
  width: 220px;
  height: 109px;
}

@media screen and (max-width: 768px) {
  .customer-img {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
  }
}

.customer-img img {
  width: 160px;
  height: 105px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .customer-img img {
    margin: 0 auto;
  }
}

.other-voices {
  text-align: right;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .other-voices {
    margin-right: 12px;
  }
}

.other-voices a {
  font-weight: 900;
  font-size: 20px;
  background-color: #b9b6b6;
}

.other-voices a:hover {
  background-color: #fff;
  border-bottom: 1px solid #333335;
}



.customer-voices-item h1 {
  background-color: #fff;
  border-radius: 5px;
  width: 350px;
  text-align: center;
  font-size: 33px;
  color: #09095a;
}

/*****************************
お問い合わせ
*****************************/
.contact-main .container {
  max-width: 100%;
  background-color: rgba(0, 121, 242, 0.05);
  padding-top: 1.45rem;
}

/* お問い合わせレindex.phpレイアウト */
.inquiry .container {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 500px;
  justify-content: center;
}


.form {
  margin: 0 auto;
  max-width: 720px;
}

.form-item {
  width: 100%;
  padding-bottom: 10px;
  display: flex;
}

@media screen and (max-width: 768px) {
  .form-item {
    flex-wrap: wrap;
  }
}

.form-item-label {
  width: 700px;
  max-width: 100%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .form-item-label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}

.form-item-label-required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .form-item-label-required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}

.form-item-input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .form-item-input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}

.form-item-textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .form-item-textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.form-btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 230px;
  display: block;
  letter-spacing: 0.4em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .form-btn {

    margin: 0 auto;
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .btn {
    text-align: center;
  }

  .btn input {
    display: inline-block;
    width: 160px;
  }
}

.contact-text {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .contact-text {
    font-size: 13px;
    margin: 0 10px;
    padding: 10px 0;
  }
}

.contact-text a {
  text-decoration: underline;
}


/*****************************
お問い合わせ完了・プライバシーポリシー
*****************************/
.contact_completion {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.privacy {
  margin: 0 20px 50px;
}


.contact_completion_item {
  margin: 0 auto;
}

.message,
.privacy_message {
  text-align: left;
  font-size: 16px;
}


.thanks-message {
  margin-bottom: 30px;
  font-size: 30px;
  text-align: left;
}


/*****************************
各ページのトップへ戻るボタン
*****************************/

.send_top,
.privacy_top,
.dispose_top,
.customer_top {
  margin: 0 auto;
  width: 130px;
  background-color: #43a8ec;
  border-radius: 3px;
  text-align: center;
}

.send_top:hover,
.privacy_top:hover,
.dispose_top:hover,
.customer_top:hover {
  background-color: #5252b3;
}


.send_top a,
.privacy_top a,
.dispose_top a,
.customer_top a {
  color: #fff;
}

.privacy_item h2 {
  font-size: 20px;
}


/*****************************
会社概要
*****************************/
.company .container {
  background-color: rgba(124, 167, 44, 0.05);
  padding: 100px 0 100px;
}

.overview {
  display: flex;
}

.table {
  display: table;
  border-collapse: collapse;
  border: solid 3px #dddddd;
  text-align: center;
  width: 55%;
  max-width: 100%;
  justify-content: center;
  margin: 0 auto 80px;
}

th,
td {
  border: solid 0.1px #dddddd;
  font-size: 23px;
}

.table th {
  background-color: #f7f3f3;
  font-weight: Normal;
}

td span {
  font-size: 20px;
}

.map-container {
  display: flex;
  justify-content: center;
}

iframe {
  height: 300px;
  width: 500px;
  max-width: 100%;
}

.access_list {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 100px;
}

.access_list li {
  margin-bottom: 20px;
  list-style-type: square;
}


@media screen and (max-width: 768px) {
  .table {
    width: 95%;
    margin: 0 auto 15px;
  }

  th,
  td {
    font-size: 13px;
    text-align: left;
  }

  td span {
    font-size: 12px;
  }

  .map-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .station {
    margin: 0 auto;
  }

  .company .container {
    padding-bottom: 0;
  }

  .map-container {
    margin-top: 25px;
  }

  .access_list {
    margin: 30px 0;
  }
}

/*****************************
フッター
*****************************/
.footer .container {
  display: flex;
  flex-direction: column;
  background-color: #0099FF;
  width: 100%;
  max-width: 100%;
  height: 140px;
  margin-top: 10px;
  padding-top: 20px;
}

.footer-item {
  display: flex;
  margin: 0 auto 10px;
}

.footer-item h3 {
  width: 130px;
  display: flex;
  text-align: center;
  align-items: center;
  color: #333335;
  font-family: "Nico Moji";
  font-size: 33px;
}

.footer-item img {
  width: 48px;
  height: 48px;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
}