@charset "utf-8";

.bread_list {
  padding: 1.5em 0;
  background-color: azure;
  border-top: solid 0.5px #707070;
  border-bottom: solid 0.5px #707070;
}

.bread_list ol {
  display: flex;
}

.bread_list ol li a {
  font-size: 14px;
}

.bread_list ol li::after {
  content: '<';
  display: inline-block;
  padding: 0 15px;
}

.bread_list ol li:last-child::after {
  display: none;
}

.root {
  color: var(--main-color);
}

@media (max-width: 900px) {
  .bread_list {
    padding: 1em 0;
    border: none;
  }

  .bread_list ol {
    margin-left: 20px;
  }

  .bread_list ol li a {
    font-size: 12px;
  }

  .bread_list ol li::after {
    content: '<';
    display: inline-block;
    padding: 0 10px;
  }
}

/*  区切り */
.sm-title {
  display: none;
}

.content_wrap {
  display: flex;
  margin: auto 0;
  text-align: center;
}

.subpage_title {
  border-top: solid 2px var(--main-color);
  padding: 30px 0 50px 0;
}

.subpage_title > h1 {
  font-size: 28px;
  color: #333;
  font-weight: 400;
}

.subpage_title_b {
  padding: 30px 0 50px 0;
}

.subpage_title_b > h2 {
  font-size: 24px;
  color: #333;
  font-weight: 400;
}

.subpage_main {
  margin-top: 50px;
  margin-left: 30px;
  margin-bottom: 50px;
  width: 100%;
  order: 2;
}

.subpage_aside {
  margin-top: 50px;
  width: 300px;
  order: 1;
  margin-bottom: 40px;
}

.title_block {
  width: 300px;
  height: 300px;
  color: #fff;
  border-radius: 4px;
  vertical-align: middle;
  background-color: var(--main-color);
}

.title_block .t {
  margin: auto;
  padding-top: 100px;
  margin-bottom: 10px;
  font-size: 32px;
}

@media (max-width: 900px) {
  .sm-title {
    display: block;
    padding: 10px 0;
    width: 100%;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background-color: var(--main-color);
  }

  .subpage_main {
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 25px;
    order: 1;
  }

  .subpage_title {
    padding: 15px 0 25px 0;
  }

  .subpage_title_b {
    padding: 30px 0 25px 0;
  }

  .subpage_title > h1 {
    font-size: 20px;
  }

  .subpage_title_b > h2 {
    font-size: 20px;
  }

  .content_wrap {
    display: flex;
    flex-direction: column;
  }

  .subpage_aside {
    margin-top: 20px;
    width: 100%;
    order: 2;
  }
  .title_block {
    display: none;
  }
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  font-size: 14px;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100% / 5);
  height: 50px;
  border-bottom: 3px solid var(--main-color);
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
  background-color: ＃35e699；;
}

/*ラジオボタンを全て消す*/
input[name='tab_item'] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/

#fourty-six:checked ~ #fourty-six_content,
#fourty-five:checked ~ #fourty-five_content,
#fourty-four:checked ~ #fourty-four_content,
#fourty-three:checked ~ #fourty-three_content,
#fourty-two:checked ~ #fourty-two_content,
#fourty-one:checked ~ #fourty-one_content,
#fourty:checked ~ #foury_content,
#thirty-nine:checked ~ #thirty-nine_content,
#thirty-eight:checked ~ #thirty-eight_content,
#thirty-seven:checked ~ #thirty-seven_content,
#thirty-six:checked ~ #thirty-six_content,
#thirty-five:checked ~ #thirty-five_content,
#thirty-four:checked ~ #thirty-four_content,
#thirty-three:checked ~ #thirty-three_content,
#thirty-two:checked ~ #thirty-two_content,
#thirty-one:checked ~ #thirty-one_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: var(--main-color);
  color: #fff;
}

@media (max-width: 900px) {
  .tab_item {
    padding: 5px 0 10px 0;
    line-height: 20px;
    font-size: 14px;
  }
}

.title_year > h2 {
  color: #333;
  font-weight: 400;
  margin-bottom: 20px;
}

.const_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #707070;
}

.const_table th,
td {
  padding: 10px 0;
  border-collapse: collapse;
  border: 1px solid #707070;
}

.const_table td {
  text-align: left;
  text-indent: 0.3em;
}

.const_table thead {
  background-color: antiquewhite;
}

@media (max-width: 900px) {
  thead {
    display: none;
  }

  .const_table tr {
    width: 100%;
    margin-left: 1em;
  }

  .const_table td {
    display: block;
    text-align: left;
    padding: 0.5em 0 0.5em 0.5em;
    width: 100%;
  }

  .const_table td:first-child {
    background: antiquewhite;
    font-weight: bold;
    text-align: center;
  }

  .const_table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
}

/* soloar_content */
.soloar_content {
  margin-top: 50px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  clear: both;
  overflow: hidden;
}

/* Company＿table */

.Comp_table {
  width: 95%;
  margin: 50px auto;
  border-collapse: collapse;
  border: solid 2px white;
}

.Comp_table tr {
  border-bottom: solid 2px white;
}

.Comp_table tr:last-child {
  border-bottom: none;
}

.Comp_table th {
  position: relative;
  text-align: left;
  font-size: 400;
  width: 30%;
  background-color: var(--main-color);
  color: white;
  text-align: center;
  padding: 10px 0;
}

.table_2colum {
  display: flex;
  border: none;
  width: 100%;
}

.t_right {
  width: 50%;
}

.t_left {
  width: 50%;
}

.table_2colum td {
  border: solid 0px white;
}

.Comp_table td {
  text-align: left;
  padding-left: 2em;
  background-color: #eee;
  border: none;
}

.Comp_table th:after {
  display: block;
  content: '';
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid var(--main-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@media (max-width: 900px) {
  .Comp_table {
    margin: 20px auto;
  }
  .table_2colum {
    display: block;
  }
  .t_right {
    width: 100%;
  }

  .t_left {
    width: 100%;
  }
}

/* sidebar */
.sidebar {
  width: 100%;
  background-color: #eee;
}

.sidebar a {
  display: block;
  width: 100%;
  padding: 20px;
  text-align: left;
  border-bottom: solid 1px #fff;
}

.sidebar a li {
  padding-left: 10px;
  border-left: solid var(--main-color) 10px;
}

.sidebar a:hover {
  opacity: 0.5;
}

/*   お問い合わせ      */

.subpage_title_c {
  padding: 10px 0 30px 0;
}

.subpage_title_c > h2 {
  font-size: 24px;
  color: #333;
  font-weight: 400;
}

@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
  }
}

.Form {
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 4px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #ec6d71;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .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: 480px) {
  .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: 480px) {
  .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: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

.contact_button_b {
  display: inline-block;
  width: 50%;
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  font-family: var(--arial-font-family);
  color: white;
  font-weight: bold;
  background-color: var(--main-color);
}

.re_h3 {
  margin-top: 8px;
  text-align: left;
  border-left: 10px solid #ec6d71;
  color: var(--gray2);
  padding-left: 10px;
}

/* re_table  */

.re_table {
  width: 95%;
  margin: 20px auto;
  border-collapse: collapse;
  border: solid 2px white;
}

.re_table tr {
  border-bottom: solid 1px white;
}

.re_table tr:last-child {
  border-bottom: none;
}

.re_table th {
  position: relative;
  text-align: left;
  font-size: 400;
  width: 30%;
  background-color: var(--gray2);
  color: white;
  text-align: center;
  padding: 10px 0;
}

.re_table td {
  text-align: left;
  padding-left: 2em;
  background-color: #eee;
  border: none;
}

@media (max-width: 900px) {
  .re_table {
    margin: 20px auto;
  }
}

/* small_table */

.small_table {
  width: 95%;
  margin: 5px auto;
  border-collapse: collapse;
  border: solid 1px white;
  font-size: 14px;
  line-height: 1.5em;
}

.small_table tr {
  border-bottom: solid 1px white;
}

.small_table tr:last-child {
  border-bottom: none;
}

.small_table th {
  position: relative;
  text-align: left;
  font-weight: 400;
  background-color: var(--gray2);
  color: white;
  text-align: center;
  padding: 3px 0;
}

.small_table th:after {
  display: none;
}

.small_table td {
  text-align: left;
  padding-left: 2em;
  background-color: #eee;
  border: none;
}

@media (max-width: 900px) {
  .small_table {
    margin: 5px auto;
    width: 100%;
    font-size: 8px;
  }
}

.headline_2_a {
  text-align: left;
  border-left: 15px solid #ec6d71;
  margin-top: 20px;
  padding-left: 10px;
  color: var(--gray2);
}

/*   class workinghour  */

.workinghour th {
  background-color: #eee;
  color: #333;
  font-weight: 400;
  text-align: left;
  padding: 0;
  margin: 0;
  line-height: 16px;
}

.workinghour td {
  padding: 0 0 0 16px;
  margin: 0;
  text-align: right;
}

@media screen and (max-width: 480px) {
  .workinghour th {
    width: 40%;
  }

  .workinghour td {
    width: 60%;
    padding: 0 0 0 4px;
  }
}

/*  業務案内ページ     */

.sub_wrap_a {
  display: flex;
  margin: 40px auto;
  text-align: center;
  width: 100%;
}

.con_left {
  width: 40%;
  text-align: left;
}

.con_right {
  width: 60%;
  text-align: left;
  margin-left: 40px;
}

.sub_wrap_b {
  display: flex;
  margin: 40px auto;
  text-align: center;
  width: 100%;
}

.con_left_b {
  width: 60%;
  text-align: left;
  margin-right: 40px;
}

.con_right_b {
  width: 40%;
  text-align: left;
}

/*   SDGs      */

.sdgstable {
  padding: 20px;
}

.sdgs_contents {
  width: 600px;
  margin: 0 auto;
  padding: 24px;
  font-size: 16px;
}

.sdgspage img {
  width: 70px;
  height: 70px;
}

.icon_block_upper {
  margin: 0 auto;
  display: flex;
  padding: 0;
  text-align: left;
}

.icon_block_smallblock_01 {
  padding: 0;
}

.icon_block_smallblock_02 {
  padding-left: 4px;
}

.icon_block_upper img {
  width: 70px;
  height: 70px;
}

.icon_block_under {
  width: 600px;
  display: flex;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 24px;
}

.icon_block_under img {
  width: 70px;
  height: 70px;
}

.sdgs_contents ul {
  margin: 16px;
}

.sdgs_contents ul li {
  text-align: left;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 16px;
  font-size: 14px;
}

.sdgstable {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  margin: 32px auto 0 auto;
  padding: 0;
}

.sdgstable th {
  text-align: center;
}

.sdgstable td {
  text-align: left;
}

.sdgstable th,
.sdgstable td {
  padding: 12px;
  border: 1px solid #ccc;
  line-height: 18px;
}

.sdgsiconimg {
  width: 70px;
  height: 70px;
}

.tdiconblock_inner {
  display: flex;
}

.tdtextblock {
  width: auto;
  padding: 16px;
  text-align: left;
}

@media (max-width: 768px) {
  .sdgs_contents {
    width: 100%;
    padding: 12px;
    margin: 0 auto;
  }

  .icon_block_upper {
    display: block;
  }

  .icon_block_under {
    display: block;
  }

  .icon_block_smallblock_02 {
    padding-left: 0px;
  }

  .sdgstable {
    width: 100%;
    font-size: 14px;
  }

  .sdgstable th,
  .sdgstable td {
    padding: 12px;
    font-size: 14px;
    line-height: 16px;
  }

  .sdgsiconimg {
    width: 50px;
  }

  .tdtextblock {
    padding: 16px;
    font-size: 16px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .sdgs_contents {
    width: 100%;
    padding: 12px;
    margin: 0 auto;
  }

  .sdgstable {
    width: 100%;
    font-size: 12px;
  }

  .sdgstable th,
  .sdgstable td {
    padding: 4px;
    font-size: 12px;
    line-height: 14px;
  }

  .sdgsiconimg {
    width: 30px;
    height: 30px;
  }

  .tdiconblock_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tdtextblock {
    word-wrap: break-word;
  }
}

/*   追加CSS 　　　　*/
/* ブロック化して適度なスペースを設ける */
.page_block {
  margin: 36px 8px;
  width: 100%;
}
/* コンタクトボタンの追加*/
.dlbutton {
  display: inline-block;
  width: 50%;
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  font-family: var(--arial-font-family);
  color: white;
  font-weight: bold;
  background-color: var(--dlbutton-color);
}

@media (max-width: 480px) {
  .page_block {
    margin: 16px 4px;
    width: 100%;
  }
}

/* 地域貢献活動  追加 */
.local_contribution_section {
  margin: 0 auto;
  width: 90%;
}

/* 画像3枚をレスポンシブに整列 */
.local_contribution_section_images {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(190px, 1fr)
  ); /* 画面幅に応じて1〜複数列 */
  gap: 8px;
}

/* 枠内にきれいに収める */
.local_contribution_section_images img {
  width: 100%; /* 親グリッドの幅にフィット */
  height: auto; /* サムネイルの高さを揃える */
  object-fit: cover; /* はみ出す分はトリミングして見栄え良く */
  display: block; /* 画像下の隙間対策 */
  border-radius: 6px; /* お好みで */
  max-width: 100%; /* 念のため横伸び防止 */
}

.local_contribution_section_p {
  margin-top: var(--spacing-sm);
  text-align: left;
}
