@charset "UTF-8";
/*
Theme Name: 大阪府環境衛生組合
Description: 大阪府環境衛生組合様用のテンプレートです
Version: 1.0
*/
/*==========================================================
    共通パーツ
==========================================================*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  background-color: #ffffff;
  font-family: "Noto Sans JP", YuGothic, "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  color: #202124;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  padding-top: 154px;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

h2 {
  font-size: 2.3rem;
  font-weight: bold;
}

.h2-small {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 5px;
  color: #6bbc6e;
}

.h2-container {
  text-align: center;
  margin-bottom: 30px;
}

h3 {
  font-size: 2rem;
  font-weight: bold;
}

.h3-container {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.inner {
  max-width: calc(1280px + 8%);
  padding-right: 4%;
  padding-left: 4%;
  margin: 0px auto;
}

.css-br-pc::after {
  display: block;
  content: "\A";
  white-space: wrap;
}

/*-- 共通パーツ (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 50px;
  }
  body {
    font-size: 1.4rem;
    padding-top: 80px;
  }

  h2 {
    font-size: 1.8rem;
  }

  .h2-small {
    font-size: 1rem;
    margin-top: 3px;
  }

  .h2-container {
    text-align: center;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 1.6rem;
    font-weight: bold;
  }

  .h3-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .inner {
    max-width: calc(1280px + 8%);
    padding-right: 4%;
    padding-left: 4%;
    margin: 0px auto;
  }

  .css-br::after {
    display: block;
    content: "\A";
    white-space: wrap;
  }

  .css-br-pc::after {
    display: none;
  }
}

/*==========================================================
    ヘッダー
==========================================================*/
#header {
  width: 100%;
  position: fixed;
  top: 0; /* 上下の固定位置を上から0pxにする */
  left: 0; /* 左右の固定位置を左から0pxにする */
  z-index: 999;
  background-color: #ffffff;
}

.header-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 20px 40px 20px 40px;
}

.header-logo {
  margin-top: 6px;
}

.header-box {
  display: flex;
}

.contact-icon-header-pc {
  background-color: #f3981c;
  border: 1px solid #f3981c;
  padding: 10px 20px;
  border-radius: 40px;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.contact-icon-header-pc:hover {
  background-color: #ffffff;
  border: 1px solid #f3981c;
  color: #f3981c;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.contact-icon-header-sp {
  display: none;
}

.material-symbols-outlined {
  vertical-align: -0.6rem;
}

.header-bottom {
  margin-top: 6px;
}

#g-nav-sp {
  display: none;
}

.g-nav-pc ul {
  display: flex;
  justify-content: center;
  padding: 8px 0px;
  font-size: 1.5rem;
}

.gnavi {
  display: flex;
  flex-wrap: wrap; /*スマホ表示折り返し用なのでPCのみなら不要*/
  margin: 0 0 5px 0;
  list-style: none;
}

.gnavi li a {
  display: block;
  padding: 0px 25px;
  text-decoration: none;
  font-weight: bold;
}

.gnavi li {
  margin-bottom: 20px;
}

.gnavi li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.gnavi li.current a,
.gnavi li a:hover {
  color: #6bbc6e;
}

.gnavi li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -20%;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #6bbc6e;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(0.8, 1); /*X方向にスケール拡大*/
}
/*-- ヘッダー (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .header-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 15px 10px 20px 10px;
  }

  .contact-icon-header-pc {
    display: none;
  }

  .contact-icon-header-sp {
    display: block;
    background-color: #f3981c;
    border: 1px solid #f3981c;
    padding: 8px 9px;
    border-radius: 40px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    margin-right: 60px;
  }

  .header-bottom {
    display: none;
  }
}

/*-- ハンバーガーメニュー (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 11px;
    right: -3px;
    cursor: pointer;
    width: 80px;
    height: 80px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #202124;
    width: 40%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 25px;
  }

  .openbtn span:nth-of-type(3) {
    top: 35px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
    background-color: #ffffff;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
    background-color: #ffffff;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
    background-color: #ffffff;
  }
}

/*-- ハンバーガーメニュー ナビゲーションエリア (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  #g-nav-sp {
    display: block;
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #6bbc6e;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav-sp.active {
    right: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav-sp.active #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav-sp ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 45%;
    left: 30%;
    transform: translate(-50%, -50%);
  }

  /*リストのレイアウト設定*/

  #g-nav-sp li {
    list-style: none;
    text-align: left;
  }

  #g-nav-sp li a {
    padding: 20px;
    display: block;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-top: 0px;
    font-size: 1.5rem;
  }
}

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

/*==========================================================
    私たちについて
==========================================================*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.about-text {
  text-align: center;
}

.about-box-circle {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

/*-- 私たちについて (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .about {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: #ffffff;
  }

  .about-box-circle {
    flex-direction: column;
    margin-top: 40px;
  }

  .about-box-circle img {
    margin: 0px auto;
    margin-bottom: 30px;
  }
}

/*==========================================================
    加盟のご案内
==========================================================*/
.membership {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f7f3;
}

.membership-container {
  width: 80%;
  margin: 40px auto;
}

.membership-mv {
  margin-bottom: 40px;
}

.membership-text {
  text-align: center;
}

.membership-box {
  margin-top: 20px;
  padding-bottom: 30px;
}

/*-- 加盟のご案内 (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .membership {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .membership-container {
    width: 100%;
    margin: 30px auto;
  }

  .membership-box {
    width: 80%;
    margin: 20px auto;
  }
}

/*==========================================================
    お知らせ
==========================================================*/
.top-news {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.top-news-list {
  width: 80%;
  margin: 40px auto;
}

.top-news-list li a {
  display: flex;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e6e1d5;
}

.news-top-list li {
  margin-right: 30px;
}

.news-top-list li:hover {
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.top-thumbnail {
  width: 220px;
  height: auto;
}

.cat-list {
  text-align: right;
}

.cat-list li {
  display: inline;
  font-size: 1.4rem;
  background-color: #f3981c;
  color: #ffffff;
  padding: 5px 5px 5px 5px;
}

.top-news-text {
  width: 100%;
  height: auto;
  padding-left: 20px;
}

.top-news-list-title {
  width: 100%;
  padding-top: 8px;
}

.date {
  font-size: 1.4rem;
}

.top-news-btn {
  margin-top: 60px;
  margin-bottom: 60px;
}

.top-news-btn a {
  text-align: center;
  margin: 0 auto;
  width: 240px;
  height: auto;
  display: block;
  padding: 15px;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  border: 1px solid #6bbc6e;
  border-radius: 120px;
  color: #6bbc6e;
}

.top-news-btn a:hover {
  background-color: #6bbc6e;
  border: 1px solid #6bbc6e;
  color: #ffffff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
/*-- お知らせ (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .top-news {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .top-news-list {
    width: 100%;
    margin: 30px 0 30px 0;
  }

  .top-news-list li a {
    display: flex;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .top-news-text {
    padding-left: 15px;
  }

  .top-news-text p {
    width: 100%;
    height: auto;
  }

  .cat-list li {
    display: inline;
    font-size: 1.2rem;
    padding: 5px 5px 5px 5px;
  }

  .top-news-list-title {
    width: 1100%;
    font-size: 1.4rem;
    padding-top: 8px;
  }

  .date {
    font-size: 1.2rem;
  }

  .top-news-btn {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .top-news-btn a {
    text-align: center;
    margin: 0 auto;
    width: 220px;
    height: auto;
    display: block;
    padding: 13px;
    letter-spacing: 0.3rem;
    border: 1px solid #6bbc6e;
    border-radius: 150px;
  }

  .news-top-list li {
    margin-right: 20px;
  }
}

/*==========================================================
    組合について
==========================================================*/
.union {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f7f3;
}

.union-container {
  width: 80%;
  margin: 40px auto;
}

.union-philosophy {
  text-align: center;
  padding: 10px 30px 60px 30px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.union-philosophy-text {
  font-size: 2rem;
  color: #6bbc6e;
  font-weight: bold;
}

.union-vision {
  text-align: center;
  padding: 10px 30px 60px 30px;
}

.union-vision-box {
  margin-top: 20px;
  padding-bottom: 30px;
}

.union-organization {
  text-align: center;
  padding: 10px 30px 60px 30px;
}

.union-organization-box {
  margin-top: 20px;
  padding-bottom: 30px;
}

.union-role {
  text-align: center;
  padding: 10px 30px 60px 30px;
}

.union-role-container {
  margin-top: 20px;
  padding-bottom: 30px;
}

.union-role-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #6bbc6e;
  padding-bottom: 10px;
}

.union-role-box {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #202124;
}

.union-history {
  text-align: center;
  padding: 10px 30px 60px 30px;
}

.union-history-container {
  margin-top: 20px;
  padding-bottom: 30px;
}

.union-history-box {
  text-align: left;
  display: flex;
  justify-content: center;
}

.union-history-box-left {
  width: 20%;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #6bbc6e;
  margin-right: 20px;
}

.union-history-box-right {
  width: 80%;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #202124;
}

.union-faq {
  width: 100%;
  height: auto;
  text-align: center;
}

.union-faq-box {
  padding: 30px 60px 30px 60px;
  margin-top: 20px;
  margin-bottom: 30px;
  background-color: #ffffff;
  text-align: left;
}

.union-faq-box-top {
  display: flex;
  border-bottom: 1px solid #202124;
  margin-top: 20px;
  padding-bottom: 20px;
}

.union-faq-q-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-right: 20px;
}

.union-faq-box-bottom {
  display: flex;
  margin-top: 20px;
  padding-bottom: 20px;
}

.union-faq-text {
  margin-top: 6px;
}

.union-faq-a-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-right: 20px;
  color: #6bbc6e;
}

.union-service {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 60px;
}

.union-service-box {
  padding: 30px 60px 30px 60px;
  margin-top: 20px;
  margin-bottom: 30px;
  background-color: #ffffff;
  text-align: left;
}

.union-service-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #6bbc6e;
  margin-bottom: 6px;
}

.union-voice {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 60px;
}

.union-voice-box {
  margin-bottom: 30px;
}

/*-- 組合について (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .union {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .union-container {
    width: 100%;
    margin: 30px auto;
  }

  .union-philosophy {
    padding: 5px 30px 30px 30px;
    background-color: #ffffff;
    margin-bottom: 20px;
  }

  .union-philosophy-text {
    font-size: 1.4rem;
    color: #6bbc6e;
    font-weight: bold;
  }

  .union-vision {
    padding: 5px 30px 0px 30px;
  }

  .union-vision-box {
    width: 100%;
    margin: 20px auto;
  }

  .union-organization {
    padding: 5px 30px 0px 30px;
  }

  .union-organization-box {
    width: 100%;
    margin: 20px auto;
  }

  .union-role {
    padding: 5px 30px 0px 30px;
  }

  .union-role-container {
    width: 100%;
    margin: 20px auto;
  }

  .union-role-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #6bbc6e;
    padding-bottom: 6px;
  }

  .union-role-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #202124;
  }

  .union-history {
    padding: 5px 30px 0px 30px;
  }

  .union-history-container {
    width: 100%;
    margin: 20px auto;
  }

  .union-history-box-left {
    width: 30%;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #6bbc6e;
    margin-right: 20px;
  }

  .union-history-box-right {
    width: 70%;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #202124;
  }

  .union-faq-container {
    width: 100%;
    margin: 20px auto;
  }

  .union-faq {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .union-faq-box {
    padding: 20px 30px 20px 30px;
    margin-top: 20px;
    margin-bottom: 30px;
    background-color: #ffffff;
    text-align: left;
  }

  .union-faq-box-top {
    display: flex;
    border-bottom: 1px solid #202124;
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .union-faq-q-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-right: 20px;
  }

  .union-faq-box-bottom {
    display: flex;
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .union-faq-text {
    margin-top: 6px;
  }

  .union-faq-a-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-right: 20px;
    color: #6bbc6e;
  }

  .union-service-box {
    padding: 20px 30px 20px 30px;
    margin-top: 20px;
    margin-bottom: 30px;
    background-color: #ffffff;
    text-align: left;
  }

  .union-service-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #6bbc6e;
    margin-bottom: 6px;
  }

  .union-voice {
    width: 100%;
    height: auto;
    text-align: center;
  }
}

/*==========================================================
    組織概要
==========================================================*/
.organization-overview {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

/* Google Mapを囲う要素 */
.google-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%; /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.organization-overview-container {
  padding-bottom: 30px;
  width: 80%;
  margin: 40px auto;
}

.organization-overview-box {
  text-align: left;
  display: flex;
  justify-content: center;
}

.organization-overview-box-left {
  width: 20%;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #6bbc6e;
  margin-right: 20px;
}

.organization-overview-box-right {
  width: 80%;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #202124;
}

/*-- 組織概要 (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .organization-overview {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .organization-overview-container {
    width: 100%;
    margin: 20px auto;
  }

  .organization-overview-box-left {
    width: 20%;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #6bbc6e;
    margin-right: 20px;
  }

  .organization-overview-box-right {
    width: 80%;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #202124;
  }
}

/*==========================================================
    お気軽にお問い合わせください
==========================================================*/

.information {
  background-color: #6bbc6e;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.information-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.information-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.information-tel-btn {
  background-color: #61c1be;
  margin-right: 20px;
  border-radius: 20px;
}

.information-tel-btn a {
  display: block;
  width: 400px;
  height: auto;
  padding: 30px;
  color: #ffffff;
}

.information-tel-title {
  font-size: 1.8rem;
  font-weight: bold;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  padding: 10px 3px;
}

.information-tel-number {
  font-size: 3.5rem;
  font-weight: bold;
  padding: 10px 0px;
}

.information-tel-text {
  font-size: 1.4rem;
}

.information-mall-btn {
  background-color: #f3981c;
  margin-right: 20px;
  border-radius: 20px;
}

.information-mall-btn a {
  display: block;
  width: 400px;
  height: auto;
  padding: 30px;
  color: #ffffff;
}

.information-mall-title {
  font-size: 1.8rem;
  font-weight: bold;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  padding: 10px 3px;
}

.information-mall-number {
  font-size: 3.5rem;
  font-weight: bold;
  padding: 10px 0px;
}

.information-mall-text {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 50px;
}

/*-- お気軽にお問い合わせください (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .information {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .information-box {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
  }

  .information-tel-btn {
    display: flex;
    justify-content: center;
    margin-right: 0px;
  }

  .information-tel-number {
    font-size: 2.5rem;
    font-weight: bold;
    padding: 10px 0px;
  }

  .information-mall-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-right: 0px;
  }

  .information-mall-text {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 30px;
  }
}

/*==========================================================
    フッター
==========================================================*/
#footer {
  background-color: #545251;
  color: #ffffff;
  padding-top: 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}

.footer-logo {
  width: 250px;
}

.footer-box-right {
  line-height: 6rem;
  border-left: 1px solid #ffffff;
  padding-left: 40px;
  padding-right: 30px;
}

.footer-box-left {
  margin-top: 10px;
}

.footer-logo-type {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 30px;
}

.footer-address {
  margin-top: 20px;
}

.footer-copyright {
  padding-bottom: 40px;
}

/*-- フッター (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .footer-container {
    display: block;
  }

  .footer-box-right {
    line-height: 5rem;
    border-top: 1px solid #ffffff;
    border-left: none;
    margin-top: 30px;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .footer-box-left a img {
    width: 250px;

    margin-bottom: 10px;
  }

  .footer-copyright p {
    letter-spacing: 0.1rem;
  }

  .c-copy {
    font-size: 2rem;
    vertical-align: -0.4rem;
  }
}

/*==========================================================
    お知らせ一覧
==========================================================*/
/*-- お知らせ一覧 (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
}

/*==========================================================
    プライバシーポリシー
==========================================================*/
/*==========================================================
    プライバシーポリシー
==========================================================*/
.privacypolicy {
  padding-top: 40px;
  padding-bottom: 40px;
}

.privacypolicy-container {
  width: 80%;
  margin: 40px auto;
}
/*-- プライバシーポリシー (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
}
/*==========================================================
    お問い合わせ
==========================================================*/

.contact {
  padding-top: 40px;
  padding-bottom: 40px;
}

.underline-inner-contact {
  padding-right: 31%;
  padding-left: 31%;
}

.from-container {
  width: 100%;
  height: auto;
}

.form-box {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.form-box dt {
  width: 260px;
}

.form-box dl {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.form-box dd {
  width: 100%;
}

[type="text"] {
  padding-left: 10px;
}
[type="email"] {
  padding-left: 10px;
}
[type="tel"] {
  padding-left: 10px;
}
[name="message"] {
  padding-left: 10px;
}

.form-box dd input {
  width: 100%;
  height: 40px;
  border: 1px solid #e6e1d5;
  border-radius: 5px;
}

.form-box textarea {
  width: 100%;
  height: auto;
  border: 1px solid #e6e1d5;
}

.required {
  display: inline-block;
}
.required::after {
  content: "（必須）";
  display: inline-block;
  padding-left: 3px;
  color: #f3981c;
}

.btn-wrapper {
  display: block;
  width: 200px;
  height: auto;
  text-align: center;
  color: #6bbc6e;
  margin: 0 auto 50px;
}

.btn-submit {
  font-size: 1.8rem;
  padding: 10px 30px;
  border: 1px solid #6bbc6e;
  border-radius: 80px;
  letter-spacing: 0.3rem;
}

.btn-submit:hover {
  background-color: #6bbc6e;
  border: 1px solid #6bbc6e;
  color: #ffffff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

/*-- お問い合わせ (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .underline-inner-contact {
    padding-right: 28%;
    padding-left: 28%;
  }

  .form-box {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
  .form-box dl {
    display: block;
    margin-bottom: -20px;
  }

  .form-box dt {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 5px;
  }

  .btn-wrapper {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

/*-- お知らせ
---------------------------------------------------------*/
.news {
  padding-top: 40px;
  padding-bottom: 40px;
}
.top-news-list {
  width: 90%;
  margin: 40px auto;
}

.top-news-list li a {
  display: flex;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #686868;
}

.news-top-list li {
  margin-right: 30px;
}

.news-top-list li:hover {
  color: #6bbc6e;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.top-thumbnail {
  width: 220px;
  height: auto;
}

.cat-list {
  text-align: right;
}

.cat-list li {
  display: inline;
  font-size: 1.4rem;
  background-color: #f3981c;
  color: #ffffff;
  padding: 5px 5px 5px 5px;
}

.top-news-text {
  width: 100%;
  height: auto;
  padding-left: 20px;
}

.top-news-list-title {
  width: 100%;
  font-size: 1.8rem;
  padding-top: 8px;
}

.date {
  font-size: 1.4rem;
  color: #686868;
}

.top-news_btn {
  margin-top: 60px;
  margin-bottom: 60px;
}

.top-news_btn a {
  text-align: center;
  margin: 0 auto;
  width: 300px;
  height: auto;
  display: block;
  padding: 20px;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  border: 1px solid #262626;
  border-radius: 150px;
}

.top-news_btn a:hover {
  background-color: #6bbc6e;
  border: 1px solid #6bbc6e;
  color: #ffffff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.wp-pagenavi {
  text-align: right;
}

.wp-pagenavi a:hover {
  color: #ffffff;
  background-color: #6bbc6e;
  border: none;
  cursor: pointer;
  border: 1px solid #6bbc6e;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.wp-pagenavi span {
  padding: 5px 7px 5px 7px;
  border: 1px solid #717170;
}

.wp-pagenavi span:hover {
  color: #ffffff;
  background-color: #6bbc6e;
  border: none;
  cursor: pointer;
  border: 1px solid #6bbc6e;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.wp-pagenavi a {
  padding: 5px 7px 5px 7px;
  margin-left: 5px;
  border: 1px solid #717170;
}

.item ul {
  display: flex;
}

/*-- お知らせ (max-width: 768px)
---------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .top-news-list {
    width: 100%;
    margin: 30px 0 30px 0;
  }

  .top-news-list li a {
    display: flex;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #686868;
  }

  .top-news-text {
    padding-left: 15px;
  }

  .top-news-text p {
    width: 100%;
    height: auto;
  }

  .cat-list li {
    display: inline;
    font-size: 1.2rem;
    background-color: #f3981c;
    color: #ffffff;
    padding: 5px 5px 5px 5px;
  }

  .top-news-list-title {
    width: 1100%;
    font-size: 1.4rem;
    padding-top: 8px;
  }

  .date {
    font-size: 1.2rem;
    color: #686868;
  }

  .top-news_btn {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .top-news_btn a {
    text-align: center;
    margin: 0 auto;
    width: 250px;
    height: auto;
    display: block;
    padding: 15px;
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    border: 1px solid #686868;
    border-radius: 150px;
  }

  .news-top-list li {
    margin-right: 20px;
  }
}
/*-- お知らせ個別ページ
---------------------------------------------------------*/

.single {
  width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.single-box {
  width: 100%;
  height: 140px;
  background-color: #f3981c;
  text-align: center;
  padding-top: 32px;
  position: relative;
}

.single-container {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.single-list-box {
  display: flex;
  justify-content: space-between;
}

.post-title {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 20px;
}

.post-header {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  color: #717170;
  margin-top: 3px;
}

.eyecatch {
  width: 100%;
  height: auto;
  background-color: #686868;
  margin-bottom: 20px;
}

.eyecatch img {
  width: 100%;
  height: auto;
}

.news-page-nav {
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  border-top: 2px dotted #a3a19f;
  border-bottom: 2px dotted #a3a19f;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .single-container {
    width: 100%;
  }

  .post-title {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }

  .post-wrapper {
    margin: 0 auto;
    width: 100%;
  }
}

/*-- 問い合わせ追加
---------------------------------------------------------*/
span.wpcf7-list-item {
  display: block;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}

input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #333;
  border-radius: 100%;
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s;
  width: 1.2em;
}

input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: #6bbc6e;
  box-shadow: inset 0 0 0 3px #fff;
}

.wpcf7-radio .wpcf7-list-item {
  margin-top: 5px;
  display: block;
}
