@charset "UTF-8";

/* ---------------------------------------------------------------------------
  ★共通
--------------------------------------------------------------------------- */

html {
  font-size: 62.5%;
}

object {
  pointer-events: none;
}

.sp,
.header_sp {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.img_r {
  overflow: hidden;
}

.img_r>img {
  float: right;
  width: 33%;
  margin-left: 15px;
  margin-bottom: 15px;
}

/* ---------------------------------------------------------------------------
  ★フォントファミリー
--------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
  ★LIST
--------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
  ★BASE
--------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
  ★テキスト
--------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
  ★インスタグラム
--------------------------------------------------------------------------- */

.instagramcont li {
  width: calc(100% / 4);
}

.instagramcont li a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0 0 100%;
  background: #949494;
}

.instagramcont li a img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

/* ---------------------------------------------------------------------------
  ★ここから新規制作
--------------------------------------------------------------------------- */
/* 並び方 */
.flex_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.flex_row>div {
  width: calc((100% - 20px) / 2);
}

.flex_3col {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.flex_3col>div {
  width: calc((100% - 40px) / 3);
}

.flex_4col {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.flex_4col>div {
  width: calc((100% - 60px) / 4);
}

/* 白ボタン */

.btn {
  min-width: 200px;
  display: block;
}

.btn .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  color: #1b4998;
  border: solid 1px #1b4998;
  text-decoration: none;
  border-radius: 50px;
  padding: 17px 25px 17px 30px;
  min-width: 200px;
}

.btn .link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* ---------------------------------------------------------------------------
  ★ヘッダー全体
--------------------------------------------------------------------------- */
header a {
  color: #202824;
  text-decoration: none;
}

.main_header {
  width: 100%;
  height: 100px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  box-shadow: 0px 3px 3px rgba(40, 23, 8, 0.2);
}

.main_header:has(#home) {
  box-shadow: unset;
}

body.at-top .main_header .header_container {
  position: relative;
  z-index: 1;
}

.header_container {
  display: flex;
  width: 100%;
  height: 100px;
  box-shadow: none;
}

/* トップにいない時だけ影を表示 */
body:not(.at-top) .header_container {
  box-shadow: 0px 3px 3px rgba(40, 23, 8, 0.2);
}

/* ---------------------------------------------------------------------------
  ★ロゴエリア
--------------------------------------------------------------------------- */
.logo_area {
  padding: 20px 46px 20px 47px;
  margin-top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.logo {
  margin: 0;
  flex-shrink: 0;
}

.logo p {
  margin-top: 16px;
  margin-left: 10px;
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 1.4px;
}

.logo a {
  display: flex;
  line-height: 1;
}

.logo img {
  width: 60px;
  height: auto;
  max-width: 100%;
  border-radius: unset;
}

/* ---------------------------------------------------------------------------
  ★メイン背景エリア（伸縮対応）
--------------------------------------------------------------------------- */
.header_bg {
  flex: 1;
  /* 残りのスペースを全て使用（伸縮対応） */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 1400px;
  /* メインエリアのみ最大幅制限 */
  margin: 0 auto;
  /* メインエリアのみ中央揃え */
}

/* ---------------------------------------------------------------------------
  ★ボタンエリア
--------------------------------------------------------------------------- */
.button_area {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 10px;
}

/* 電話番号エリア */
header .tel_area {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-right: 22px;
  height: 60px;
  width: 250px;
}

header .tel_area img {
  width: 30px;
  height: 39px;
  margin-left: 20px;
  margin-top: 14px;
  border-radius: unset;
}

header .tel_area .flex_row:first-child {
  align-items: center;
  gap: 0;
}

header .tel_area .flex_row:first-child p {
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: 27px;
  letter-spacing: 1.35px;
}

header .tel_area .flex_row:last-child {
  align-items: center;
  gap: 0;
  font-family: 'Noto Sans JP';
  font-size: 12px;
  letter-spacing: 0.6px;
  margin-right: 8px;
  margin-top: -14px;
  white-space: nowrap;
  justify-content: flex-end;
}

/* ボタン内の画像 */
.header_btn img {
  width: 20px;
  height: auto;
}

/* ボタン1 */
header .btn_contact {
  display: flex;
  width: 228px;
  height: 60px;
  padding: 14px 25px;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  border: none;
  border-radius: 0px 0px 0px 5px;
  -moz-border-radius: 0px 0px 0px 5px;
  -webkit-border-radius: 0px 0px 0px 5px;
  background: #17a561;
}

header .btn_red {
  background-color: #EF401D;
  border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  -webkit-border-radius: 0px 0px 5px 5px;
}

header .btn_contact p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.8px;
  margin-left: 7px;
  white-space: nowrap;
}

header .btn_contact:hover {
  background: #0c7944;
}

header .btn_red:hover {
  background-color: #be2709;
}

header a.btn_contact img {
  width: 30px;
  height: 22px;
  margin-left: 18px;
  border-radius: unset;
}

header a.btn_red img {
  width: 30px;
  height: 33px;
  height: auto;
}

/* ---------------------------------------------------------------------------
  ★ナビゲーションエリア（下段）
--------------------------------------------------------------------------- */
.header_nav {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  padding: 0 25px 0 130px;
  position: static;
  z-index: 9200;
  position: relative;
}

.nav_list {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 2px;
  font-family: 'Noto Sans JP';
  font-size: 15px;
  letter-spacing: 0.75px;
}

.nav_list .nav_item {
  transition: background-color 0.3s ease;
  padding: 6px 23px 7px 23px;
}

.nav_list .nav_item:hover {
  background-color: #E1EFE6;
}

@media screen and (max-width: 1300px) {
  .header_nav {
    padding: 0;
  }

  .logo_area {
    padding: 32px 10px 20px 49px;
  }
}

@media screen and (max-width: 1200px) {
  .header_nav {
    padding: 0;
  }

  .logo_area {
    padding: 32px 10px 20px 49px;
  }

  .nav_list .nav_item:nth-child(1) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(2) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(3) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(4) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(5) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(6) {
    padding: 10px;
  }
}

/* 1100px以下 */
@media screen and (max-width: 1100px) {
  .header_nav {
    padding: 0;
  }

  .logo_area {
    padding: 32px 10px 20px 30px;
  }

  .nav_list .nav_item:nth-child(1) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(2) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(3) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(4) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(5) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(6) {
    padding: 10px;
  }

  .header_bg {
    padding: 4px 0px 0;
  }
}

/* 1000px以下 */
@media screen and (max-width: 1000px) {
  .header_nav {
    padding: 0;
  }

  .logo_area {
    padding: 32px 10px 20px 10px;
  }

  .logo p {
    margin-left: 10px;
    font-size: 19px;
  }

  .nav_list .nav_item:nth-child(1) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(2) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(3) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(4) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(5) {
    padding: 10px;
  }

  .nav_list .nav_item:nth-child(6) {
    padding: 10px;
  }

  .header_bg {
    padding: 4px 0px 0;
  }
}

/* =====================================================
   ★フッター
===================================================== */
/*　お問い合わせエリア　*/
.top_section_contact {
  background-color: #17A561;
  padding: 0;
}

.top_section_contact .sub_title {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  padding-top: 52px;
}

.top_section_contact h2 {
  font-family: 'Noto Serif JP';
  color: #fff;
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 1.8px;
  margin-top: -9px;
}

.top_section_contact .btn_container {
  width: 617px;
  margin-top: 38px;
}

.top_section_contact .btn_container .btn_link {
  height: 125px;
  background-color: #fff;
  color: #EF401D;
  position: relative;
  flex-direction: column;
  border: solid 2px transparent;
  transition: all 0.3s ease;
}

.top_section_contact .btn_container .btn_link:hover {
  border: solid 2px #EF401D;
  background-color: #ffefec;
  transform: translateY(-2px);
  opacity: 1;
}

.top_section_contact .btn_container .red_fukidashi {
  position: absolute;
  top: -28px;
  left: 102px;
  background-color: #EF401D;
  border: solid 2px #fff;
  border-radius: 5px;
  width: 411px;
  height: 43px;
}

.top_section_contact .btn_container .red_fukidashi::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 20px;
  width: 8px;
  height: 14px;
  background-color: #EF401D;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.top_section_contact .btn_container .btn_link p.bla {
  font-size: 1.5rem;
  line-height: 30px;
  letter-spacing: 0.75px;
  color: #202824;
  font-weight: normal;
  margin-top: -10px;
}

.top_section_contact .btn_container .red_fukidashi p {
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 31.02px;
  position: relative;
  letter-spacing: 0.7px;
  padding: 5px 0;
}

.top_section_contact .btn_container .btn_link p.red {
  font-weight: bold;
  font-size: 3.4rem;
  letter-spacing: 1.7px;
  color: #ef401d !important;
}

.top_section_contact .btn_container div.white {
  padding-top: 10px;
}

.top_section_contact .btn_container .btn_link div.white::after {
  position: absolute;
  content: '';
  background-image: url(../img/red_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 46%;
  right: 18px;
}

.top_section_contact .flex_row {
  display: flex;
  gap: 38px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
  margin-top: 34px;
  width: fit-content;
  padding-bottom: 76px;
}

.top_section_contact .flex_row .tel_area,
.top_section_contact .flex_row .top_contact {
  border: solid 2px #fff;
  border-radius: 5px;
  width: 480px;
  max-width: calc((100vw - 129px - 38px - 60px) / 2);
  /* 画面幅から必要分を引いて2で割る */
  min-width: 320px;
  /* 最小幅 */
  height: 100px;
  justify-content: flex-start;
}

.top_section_contact .flex_row a {
  color: #fff;
}

.top_section_contact .tel_area {
  display: flex;
  flex-direction: row;
  gap: 0;
  text-decoration: none;
  margin-left: 1px;
}

.top_section_contact .tel_area .tell {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: flex-start;
  margin-left: 41px;
}

.top_section_contact .tel_area img {
  width: 40px;
  height: 52px;
  border-radius: unset;
}

.top_section_contact .tel_area p.big {
  font-weight: bold;
  font-size: 4.4rem;
  letter-spacing: 2.2px;
  margin-left: 12px;
  transform: translateY(2px);
}

.top_section_contact .tel_area p.small {
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  font-weight: normal;
  transform: translateY(-14px);
  margin-left: 5px;
}

.top_section_contact .top_contact {
  transition: all 0.3s ease;
}

.top_section_contact .top_contact .flex_row {
  margin-left: 46px;
  margin-top: 31px;
  gap: 0;
  padding-bottom: 0;
}

.top_section_contact .top_contact .flex_row div {
  width: auto;
  margin-left: 15px;
  margin-top: -17px;
  position: relative;
}

.top_section_contact .top_contact .flex_row div::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 29px;
  right: -43px;
}

.top_section_contact .top_contact:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease;
  background-color: #0c7944;
}

.top_section_contact .top_contact img {
  width: 46px;
  height: 32px;
  border-radius: unset;
}

.top_section_contact .top_contact p.big {
  font-weight: bold;
  font-size: 2.6rem;
  letter-spacing: 1.3px;
}

.top_section_contact .top_contact p.small {
  font-size: 1.5rem;
  letter-spacing: 0.75px;
}

@media (max-width: 1100px) {

  .top_section_contact .tel_area .tell {
    margin-left: 20px;
  }

  .top_section_contact .tel_area p.big {
    font-size: 3rem;
  }

  .top_section_contact .top_contact .flex_row {
    margin-left: 12px;
  }

  .top_section_contact .flex_row {
    gap: 10px;
  }

  .top_section_contact br.chousei {
    display: block !important;
  }

  .top_section_contact .top_contact .flex_row div {
    margin-left: 10px;
  }

  .top_section_contact .top_contact p.big {
    font-size: 2.2rem;
    letter-spacing: 1.3px;
  }

  .top_section_contact .top_contact p.small {
    margin-top: -5px;
    line-height: 20px;
  }
}

/* ★フッター本体 */

footer {
  background-color: #fff;
  padding: 36px 0 0;
  position: relative;
}

.scroll_to_top_container {
  position: absolute;
  top: -34px;
  right: 23px;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll_to_top_link:hover {
  opacity: 0.7;
}

.scroll_to_top_link img {
  border-radius: unset;
  width: 50px;
  height: 55px;
}

footer .flex_4col {
  gap: 10px;
  margin: 0 370px;
}

@media (max-width: 1300px) {
  footer .flex_4col {
    margin: 0 200px;
  }
}

@media (max-width: 1000px) {
  footer .flex_4col {
    margin: 0 150px;
  }
}

footer .flex_4col a {
  color: #202824;
  padding: 0 8px;
}

footer .flex_4col a:hover {
  background-color: #E1EFE6;
}

.footer_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 30px;
}

.footer_container a.logo {
  display: flex;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  width: 300px;
  flex-direction: column;
  color: #202824;
}

.footer_container a img {
  width: 65px;
  height: 65px;
  border-radius: unset;
}

.footer_container a.logo p {
  font-size: 22px;
  letter-spacing: 1.1px;
  padding-top: 13px;
  font-weight: normal;
  margin: 0;
}

.footer_container .flex_row>div:first-child {
  width: 40%;
  margin-top: 3px;
}

.footer_container .flex_row>div:last-child {
  width: 60%;
}

.footer_container .flex_row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35px;
}

.footer_container .flex_row iframe {
  max-width: 100%;
}

.footer_container .adress {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.75px;
  margin-left: -1px;
  margin-top: -4px;
}

.footer_container .tel_fax {
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.75px;
  margin-top: 3px;
  margin-left: -1px;
}

.footer_container .message_box {
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.75px;
  border: solid 2px #E1EFE6;
  border-radius: 5px;
  margin-top: 15px;
  width: 453px;
  padding: 14px 20px 20px;
}

@media (max-width: 1300px) {
  .footer_container .message_box {
    width: 100%;
  }
}

.footer_container .copyright {
  font-size: 12px;
}

.copyright_wrap {
  width: 100%;
  height: 30px;
}

.copyright {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.7px;
  color: #B1BAB6;
  text-align: center;
}

/* ================================================
   パンくずナビゲーション
================================================ */
.breadcrumb_area {
  background-color: #E1EFE6;
  padding: 5px 0;
}

.breadcrumb_area .pankuzu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pankuzu li {
  color: #202824;
  font-size: 14px;
  font-weight: 500;
}

.pankuzu li .arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #202824;
  border-bottom: 1px solid #202824;
  transform: rotate(-45deg);
}

.pankuzu li a {
  color: #202824;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
}

.pankuzu .pankuzu_right {
  padding-left: 14px;
  padding-right: 14px;
}

.pankuzu li a:hover {
  background-color: #17A561;
  color: #ffffff;
  text-decoration: none;
}

/* ================================================
   キービジュアル共通
================================================ */
body:not(:has(#home)) .kv {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

body:not(:has(#home)) .kv_bg_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #17A561 0%, #0d6b3e 100%);
}

body:not(:has(#home)) .kv_content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body:not(:has(#home)) .kv_title_box {
  position: relative;
  z-index: 1;
  background-color: rgba(225, 239, 230, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 20px 40px;
  backdrop-filter: blur(4px);
  overflow: hidden;
}

/* レンガの段 */
body:not(:has(#home)) .brick_row {
  height: 40px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  opacity: 0.6;
  /* 全体の透明度60% */
  filter: blur(0.5px);
  /* わずかにぼかし */
}

/* 奇数段（通常パターン） */
body:not(:has(#home)) .brick_row_odd {
  background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 151px,
      rgba(255, 255, 255, 0.8) 151px,
      rgba(255, 255, 255, 0.8) 154px);
}

/* 偶数段（75pxずらしパターン） */
body:not(:has(#home)) .brick_row_even {
  background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 150px,
      rgba(255, 255, 255, 0.8) 150px,
      rgba(255, 255, 255, 0.8) 153px);
  background-position: -75px 0;
}

body:not(:has(#home)) .kv_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #0d6b3e;
  font-weight: bold;
  line-height: 1.6;
}

body:not(:has(#home)) .kv_content .sub_title {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-weight: bold;
  line-height: 1.6;
}

/* ================================================
   TOPのkvセクション
================================================ */
div#home {
  position: relative;
}

#home .kv {
  position: relative;
  width: 100%;
}

#home .kv_content {
  position: relative;
  width: 100%;
  background-image: url(../img/top_kv.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1400 / 650;
}


#home .kv .kv_absolute {
  position: absolute;
  top: 40.5%;
  width: 100%;
}

#home .kv .kv_title {
  background: rgba(58, 45, 38, 0.37);
  height: 80px;
  text-align: center;
}

#home .kv .kv_title p {
  color: #fff;
  font-family: 'Noto Serif JP';
  font-weight: bold;
  font-size: 46px;
  letter-spacing: 4.6px;
  margin-left: -18px;
  margin-top: -2px;
}

#home .kv .kv_title .chousei {
  margin-left: -13px;
}

/*------------------- 注文フォーム -------------------*/

#home .order_form {
  position: absolute;
  background-color: #fff;
  width: 341px;
  height: 86px;
  top: 74.31%;
  right: 48px;
  border-radius: 5px;
}

#home .order_form:hover {
  transition: all 0.3s ease;
  transform: translateY(-3px);
  background-color: #ffefec;
}

/* 1200～1400px */
@media (max-width: 1399px) and (min-width: 1200px) {
  #home .order_form {
    right: 40px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  #home .order_form {
    top: 16%;
  }
}

/* 901～1200px */
@media (max-width: 1200px) and (min-width: 901px) {
  #home .order_form {
    right: 30px;
  }
}

#home .order_form_contain {
  position: relative;
}


#home .order_form_contain p {
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1.1px;
  color: #EF401D;
  text-align: center;
  padding-top: 23px;
  position: relative;
}

#home .order_form_contain p::after {
  position: absolute;
  content: '';
  background-image: url(../img/red_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 37px;
  right: 9px;
}

#home .order_form_fukidashi {
  position: absolute;
  background-color: #EF401D;
  color: #fff;
  top: -31px;
  left: 23px;
  width: 294px;
  height: 43px;
  border: solid 2px #fff;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.75px;
  text-align: center;
  padding: 5px 0 0 6px;
}



#home .order_form_fukidashi::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 20px;
  width: 8px;
  height: 14px;
  background-color: #EF401D;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  /* 左上(0,0) → 右上(100%,0) → 右下(100%,100%) の三角形 */
}

/*------------------- 新着情報 -------------------*/
#home .section_01.news {
  position: relative;
  max-width: 1600px;
  height: 55px;
  margin: -26px auto 0;
  background-color: #fff;
  padding: 0 20px;
  padding-top: 8px;
  border-radius: 5px;
  z-index: 10;
  border: solid 2px #BAD3C2;
}

#home .section_01.news .container {
  padding: 4px;
}

#home .section_01.news .news_link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-right: 60px;
  box-sizing: border-box;
}

#home .section_01.news .news_link::after {
  position: absolute;
  content: '';
  background-image: url(../img/green_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
  right: 27px;
  pointer-events: none;
}

#home .section_01.news .news_link:hover {
  background-color: #E1EFE6;
}

#home .section_01.news .flex_4col {
  letter-spacing: 0.75px;
  justify-content: flex-start;
  font-size: 15px;
  gap: 10px;
  width: 100%;
}

#home .section_01.news .flex_4col div:first-child {
  color: #17A561;
  position: relative;
  flex: 0 0 214px;
  font-size: 16px;
  letter-spacing: 0.8px;
  padding-left: 29px;
  box-sizing: border-box;
}

#home .section_01.news .flex_4col div:first-child::after {
  position: absolute;
  content: '';
  width: 2px;
  height: 93%;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #BAD3C2;
}

#home .section_01.news .flex_4col div:nth-child(2) {
  flex: 0 0 110px;
}

#home .section_01.news .flex_4col div:nth-child(3) {
  flex: 0 0 74px;
  margin-left: 4px;
  margin-top: 1px;
  border: solid 1px #EA8C7D;
  border-radius: 2px;
  color: #ef401d;
  font-size: 14px;
  padding: 0 6px;
  height: 24px;
  display: inline-flex;
  align-items: center;
}

#home .section_01.news .title {
  flex: 1;
  margin-left: 30px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #202824;
}

#home .section_02.reasons {
  padding-top: 68px;
  text-align: center;
  padding-bottom: 92px;
  position: relative;
}

#home .section_02.reasons::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E1EFE6;
  height: 2px;
  width: 85.5%;
}

#home .section_02.reasons .sub_title {
  letter-spacing: 0.75px;
  color: #17A561;
}

#home .section_02.reasons h2 {
  font-family: 'Noto Serif JP';
  font-weight: bold;
  letter-spacing: 1.8px;
  margin-top: -50px;
}

#home .section_02.reasons .green {
  color: #17A561;
}

#home .section_02.reasons h2 .big {
  font-size: 7rem;
}

#home .section_02.reasons .discript {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

#home .section_02.reasons .flex_3col {
  margin-top: 40px;
  gap: 76px;
  font-family: 'Noto Sans JP';
}

#home .section_02.reasons .flex_3col .title .big {
  font-size: 9.3rem;
  color: #E1EFE6;
  letter-spacing: 3.15px;
  font-family: 'Zen Kaku Gothic New';
  font-weight: bold;
  margin-top: -58px;
}

#home .section_02.reasons .flex_3col .title .big .little {
  font-size: 6.4rem;
}

#home .section_02.reasons .flex_3col .flex_row {
  justify-content: flex-start;
  gap: 10px;
}

#home .section_02.reasons .flex_3col .flex_row div {
  width: 70%;
  text-align: left;
  margin-left: -3px;
}

#home .section_02.reasons .flex_3col .flex_row div p:first-child {
  font-size: 1.5rem;
  letter-spacing: 0.75px;
}

#home .section_02.reasons .flex_3col .flex_row div p:last-child {
  font-size: 2.5rem;
  letter-spacing: 1.25px;
  margin-top: -8px;
}

#home .section_02.reasons .flex_3col img {
  border-radius: 5px;
  margin-top: -42px;
}

#home .section_02.reasons .flex_3col .discript {
  font-size: 1.6rem;
  line-height: 28px;
  font-family: 'Noto Sans JP';
  text-align: left;
  letter-spacing: 0;
  margin-top: 11px;
}

.btn_container {
  width: 417px;
  margin: 0 auto;
  margin-top: 52px;
}

.btn_container .btn_link {
  display: block;
  width: 100%;
  height: 78px;
  background-color: #17A561;
  color: #FFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.btn_container .btn_link p {
  margin: 0;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1.1px;
  position: relative;
}

#home .section_02.reasons .btn_container .btn_link p::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 14px;
  right: -84px;
}

.btn_container .btn_link:hover {
  background-color: #0c7944;
  opacity: 0.9;
}

#home .section_03.jigyou_annai {
  padding-top: 68px;
  text-align: center;
}

#home .section_03.jigyou_annai .green {
  color: #17A561;
}

#home .section_03.jigyou_annai .sub_title {
  letter-spacing: 0.75px;
  color: #17A561;
}

#home .section_03.jigyou_annai h2 {
  font-family: 'Noto Serif JP';
  font-weight: bold;
  font-size: 3.6rem;
  letter-spacing: 1.8px;
  margin-top: -16px;
}

#home .section_03.jigyou_annai .flex_row {
  gap: 80px;
  margin-top: 38px;
}

@media (max-width: 1000px) {
  #home .section_03.jigyou_annai .flex_row {
    gap: 40px;
  }
}

#home .section_03.jigyou_annai .flex_row>div {
  border: solid 2px #BAD3C2;
  border-radius: 5px;
}

#home .section_03.jigyou_annai .flex_row .text {
  padding: 0 30px;
}

#home .section_03.jigyou_annai .flex_row .text p {
  font-size: 2.0rem;
  letter-spacing: 3.2px;
  text-align: left;
  margin-top: 16px;
}

#home .section_03.jigyou_annai .flex_row .text p.little {
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  margin-top: 7px;
}

#home .section_03.jigyou_annai .flex_row .text p.big {
  font-size: 22px;
  letter-spacing: 1.1px;
  margin-top: -8px;
}

#home .section_03.jigyou_annai .flex_row .text p.discript {
  font-size: 1.6rem;
  line-height: 26px;
  letter-spacing: 0.8px;
}

#home .section_03.jigyou_annai .flex_row .text .discript.item01 {
  margin-top: -5px;
}

#home .section_03.jigyou_annai .flex_row .text .discript.item02 {
  margin-top: 0;
}

#home .section_03.jigyou_annai .flex_row img {
  border-radius: 0;
}

#home .section_03.jigyou_annai .flex_row>div .flex_3col {
  padding: 0 60px 37px;
}

#home .section_03.jigyou_annai .flex_row>div .flex_3col>div {
  border: solid 2px #BAD3C2;
  border-radius: 5px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 22px;
  letter-spacing: 0.8px;
}

#home .section_03.jigyou_annai .flex_row>div:first-child .flex_3col {
  margin-top: 29px;
}

#home .section_03.jigyou_annai .flex_row>div:last-child .flex_3col {
  margin-top: 10px;
}

#home .section_03.jigyou_annai .btn_container {
  margin-top: 59px;
}

#home .section_03.jigyou_annai .btn_container .btn_link p::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 14px;
  right: -84px;
}

#home .section_04.betonblock {
  min-height: 939px;
  margin-top: 140px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

#home .section_04.betonblock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 466px;
  background-image: url(../img/betonblock.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

#home .section_04.betonblock .beton_image {
  padding-top: 61px;
  padding-left: 50px;
  color: #fff;
  font-weight: bold;
  z-index: 2;
  position: relative;
}

#home .section_04.betonblock .beton_image .little {
  font-size: 2.2rem;
  letter-spacing: 1.1px;
  margin-left: -14px;
  margin-top: -1px;
}

#home .section_04.betonblock .beton_image p strong {
  font-family: 'Noto Serif JP';
  font-size: 5.1rem;
  letter-spacing: 3.2px;
}

#home .section_04.betonblock .beton_image p.two {
  font-size: 2.0rem;
  letter-spacing: 1px;
  font-weight: normal;
  margin-top: -6px;
  margin-left: 40px;
  position: relative;
}

#home .section_04.betonblock .beton_image p.two:before {
  position: absolute;
  content: '';
  top: 15px;
  left: -40px;
  background-color: #fff;
  width: 30px;
  height: 2px;
}

#home .section_04.betonblock .beton_image p.three {
  font-size: 1.8rem;
  line-height: 30px;
  letter-spacing: 0.9px;
  font-weight: normal;
  margin-top: 40px;
}

#home .section_04.betonblock .white_box {
  background-color: #fff;
  width: 1000px;
  height: 500px;
  position: absolute;
  right: 0;
  top: 333px;
  padding: 34px 36px 0 98px;
  border-radius: 5px 0 0 0;
  z-index: 10;
}

@media (min-width: 1401px) {
  #home .section_04.betonblock .white_box {
    top: 333px;
    right: calc((100vw - 1400px) / 2);
  }
}

#home .section_04.betonblock .white_box .flex_row {
  width: 111px;
  height: 38px;
  background-color: #17A561;
  border-radius: 5px;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  margin-left: 24px;
}

#home .section_04.betonblock .white_box .flex_row img {
  width: 16px;
  height: 13px;
  margin-left: 16px;
}

#home .section_04.betonblock .white_box .flex_row p {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  margin-left: 5px;
}

#home .section_04.betonblock .white_box .flex_4col {
  margin-top: 24px;
  gap: 0;
}

#home .section_04.betonblock .white_box .flex_row,
#home .section_04.betonblock .white_box .flex_4col,
#home .section_04.betonblock .white_box .btn_container {
  position: relative;
  z-index: 2;
}

#home .section_04.betonblock .white_box .flex_4col>div {
  position: relative;
  width: 214px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#home .section_04.betonblock .white_box .flex_4col>div:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 250px;
  background-color: #E1EFE6;
}

#home .section_04.betonblock .white_box .flex_4col>div p:first-child {
  font-family: 'Zen Maru Gothic';
  font-weight: bold;
  font-size: 4.4rem;
  letter-spacing: -0.55px;
  color: #17A561;
  margin-top: -2px;
}

#home .section_04.betonblock .white_box .flex_4col>div p:last-child {
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: 2.0rem;
  line-height: 26px;
  letter-spacing: 1px;
  color: #17A561;
}

#home .section_04.betonblock .white_box .flex_4col>div img {
  border-radius: unset;
}

#home .section_04.betonblock .white_box .flex_4col>div:first-child img {
  width: 89px;
  height: 55px;
  margin-top: 7px;
}

#home .section_04.betonblock .white_box .flex_4col>div:nth-child(2) img {
  width: 55px;
  height: 59px;
  margin-top: 5px;
}

#home .section_04.betonblock .white_box .flex_4col>div:nth-child(3) img {
  width: 60px;
  height: 56px;
  margin-top: 7px;
}

#home .section_04.betonblock .white_box .flex_4col>div:last-child img {
  width: 83px;
  height: 83px;
  margin-top: -7px;
}

#home .section_04.betonblock .white_box .flex_4col>div:first-child p.discript {
  margin-top: 27px;
}

#home .section_04.betonblock .white_box .flex_4col>div:nth-child(2) p.discript {
  margin-top: 25px;
}

#home .section_04.betonblock .white_box .flex_4col>div:nth-child(3) p.discript {
  margin-top: 27px;
}

#home .section_04.betonblock .white_box .flex_4col>div:last-child p.discript {
  margin-top: 14px;
}

#home .section_04.betonblock .btn_container {
  margin-top: 110px;
}

#home .section_04.betonblock .btn_container .btn_link {
  background-color: #EF401D;
  position: relative;
}

#home .section_04.betonblock .btn_container .btn_link:hover {
  background-color: #be2709;
  transition: all 0.3s ease;
  transform: translateY(-3px);
}

#home .section_04.betonblock .btn_container .btn_link p {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1.1px;
  position: relative;
}

#home .section_04.betonblock .btn_container .btn_link p.kuwashiku::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 14px;
  right: -50px;
}

#home .section_04.betonblock .btn_container .white_fukidashi {
  position: absolute;
  top: -25px;
  left: 22px;
  background-color: #fff;
  border: solid 2px #EF401D;
  border-radius: 5px;
  width: 373px;
  height: 39px;
}

#home .section_04.betonblock .btn_container .white_fukidashi p {
  font-size: 1.5rem;
  position: relative;
  color: #202824;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.1px;
  padding: 3px 0px;
}

#home .section_04.betonblock .btn_container .white_fukidashi::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 17px;
  width: 8px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

#home .section_04.betonblock .beton_illust {
  background-color: #E1EFE6;
  width: calc(100% - 99px);
  height: 749px;
  /* 466px + 283px */
  border-radius: 0 0px 0px 5px;
  position: absolute;
  top: 0;
  left: 99px;
  z-index: 0;
}

#home .section_04.betonblock img.illust {
  position: absolute;
  top: 61px;
  left: calc(959px - 100vw);
  width: 590px;
  height: 442px;
  z-index: 1;
}

@media (min-width: 1399px) {
  #home .section_04.betonblock img.illust {
    left: calc(259px - 50vw);
  }
}

#home .section_04.betonblock .sukima {
  margin-top: 749px;
  display: block;
  height: 190px;
  width: 100%;
  position: relative;
}

#home .section_04.betonblock .red_line {
  position: absolute;
  bottom: 14px;
  /* 固定 */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #EF401D;
  z-index: 2;
}

/*------------------- コンタクトフォーム -------------------*/

/* お問い合わせ */

#contact .section_01.contact_info {
  background-color: #ffffff;
}

#contact .section_01.contact_info .inner_1000 {
  text-align: center;
}

#contact .section_01.contact_info .contact_message {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

#contact .section_01.contact_info .contact_details,
#beton_order .section_01.contact_info .contact_details {
  background-color: #E1EFE6;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

#contact .section_01.contact_info .contact_details .flex_row,
#beton_order .section_01.contact_info .contact_details .flex_row {
  align-items: center;
  justify-content: center;
}

#contact .section_01.contact_info .contact_details .flex_row img,
#beton_order .section_01.contact_info .contact_details .flex_row img {
  width: 30px;
  height: 39px;
}

#contact .section_01.contact_info .contact_details .business_hours,
#beton_order .section_01.contact_info .contact_details .business_hours {
  font-size: 16px;
  margin-top: 10px;
}

#contact .section_01.contact_info .tel_link,
#beton_order .section_01.contact_info .tel_link {
  display: block;
  font-weight: bold;
  color: #17a561;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 32px;
}

#beton_order .section_01.contact_info .bgc {
  color: #202824;
  background-color: #fff;
  margin: 30px auto 0;
  padding: 10px 20px;
  border: solid 2px #17a561;
  display: block;
  width: 350px;
  border-radius: 5px;
}

#beton_order .section_01.contact_info .bgc strong {
  font-weight: bold;
  margin-top: 15px;
  color: #17a561;
  font-size: 2rem;
}

#beton_order .section_01.contact_info .bgc:hover {
  background-color: #17a561;
  color: #fff;
}

#beton_order .section_01.contact_info .bgc:hover strong {
  color: #fff;
}

#contact table th {
  color: #fff;
  width: 33%;
}

/* プライバシーポリシー本文 */
.contact_form_section .privacy_container,
#beton_order .contact_form_section .privacy_container {
  margin: 20px 0;
  border: 2px solid #17A561;
  border-radius: 5px;
  overflow: hidden;
}

.contact_form_section .privacy_toggle_checkbox,
#beton_order .contact_form_section .privacy_toggle_checkbox {
  display: none;
}

.contact_form_section .privacy_toggle_checkbox:checked+.privacy_toggle_header .privacy_arrow {
  transform: rotate(180deg);
}

.contact_form_section .privacy_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease,
    padding-bottom 0.3s ease;
  background-color: #fff;
  padding: 0 30px;
}

.contact_form_section .privacy_toggle_checkbox:checked~.privacy_content {
  max-height: 300px;
  padding: 30px;
  overflow-y: auto;
}

.contact_form_section .privacy_content p {
  margin: 10px auto;
  line-height: 1.8;
  overflow-wrap: break-word;
}

/* プライバシーポリシー同意 */
.section_02.contact_form_section .privacy_agreement,
#beton_order .section_02.contact_form_section .privacy_agreement {
  text-align: center;
  background: #E1EFE6;
}

.section_02.contact_form_section .privacy_label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.section_02.contact_form_section .privacy_label input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.section_02.contact_form_section .privacy_label a {
  color: #0b3985;
  text-decoration: underline;
  font-weight: bold;
}

.section_02.contact_form_section .privacy_label a:hover {
  color: #1c1ae4;
}

/* 送信ボタン */
.section02.contact_form_section .contact_submit_btn {
  background: linear-gradient(257deg,
      #f4f2fa -14.19%,
      #416ae5 24.4%,
      #1c1ae4 57.43%,
      #1d1558 94.83%);
  color: #fff;
  padding: 18px 60px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.section02.contact_form_section .contact_submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 9, 65, 0.3);
}

.section02.contact_form_section .contact_submit_btn:active {
  transform: translateY(0);
}

#contact .section02 .privacy_label,
#beton_order .section02 .privacy_label {
  display: flex;
  justify-content: center;
  padding: 20px;
  align-items: center;
  margin: 0;
  background-color: #E1EFE6;
}

#contact .section02 .privacy_label input,
#beton_order .section02 .privacy_label input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

#contact .section02 .privacy_label a,
#beton_order .section02 .privacy_label a {
  color: #17A561;
  font-weight: bold;
  text-decoration: underline;
}

#contact .section02 .privacy_label a:hover,
#beton_order .section02 .privacy_label a:hover {
  color: #0d6b3e;
}

#contact .section02 .privacy_container .submit_wrap,
#beton_order .section02 .privacy_container .submit_wrap {
  background-color: #E1EFE6;
  padding: 20px;
}

#contact .section02 .privacy_container .submit_wrap input[type="submit"],
#beton_order .section02 .privacy_container .submit_wrap input[type="submit"] {
  margin: 0 auto;
  display: block;
  width: 200px;
  height: 60px;
  background-color: #17A561;
  color: #FFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: unset;
  font-size: 18px;
  font-weight: bold;
}

#contact .section02 .privacy_container .submit_wrap input[type="submit"]:hover,
#beton_order .section02 .privacy_container .submit_wrap input[type="submit"]:hover {
  background-color: #0c7944;
  color: #fff;
}

/*------------------- サンクスページ -------------------*/

/*------------------- サンクスページ -------------------*/

/* サンクスメッセージセクション */

.thanks_message_area {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thanks_message_area .back_top {
  width: 200px;
  background-color: #17A561;
  padding: 8px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 30px auto 0;
  transition: all 0.3s ease;
  position: relative;
}

.thanks_message_area .back_top::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 16px;
  right: 20px;
}

.thanks_message_area .back_top:hover {
  transform: translateY(-4px);
  background-color: #0c7944;
}

/* チェックアイコン */
.thanks_icon {
  margin-bottom: 30px;
}

.check_circle {
  width: 80px;
  height: 80px;
  background: #0b3985;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(14, 35, 70, 0.3);
  animation: pulse 2s infinite;
}

.check_mark {
  width: 24px;
  height: 12px;
  border: 3px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: -6px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(14, 35, 70, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(14, 35, 70, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(14, 35, 70, 0.3);
  }
}

/* サンクスコンテンツ */

.thanks_content>p:first-child {
  color: #17A561;
  margin-bottom: 25px;
}

/* 下層 */

/* 会社案内　company */

#company .section_01.anchor_nav {
  background-color: #ffffff;
  border-bottom: 3px solid #17A561;
}

#company .section_01.anchor_nav .anchor_buttons {
  display: flex;
  gap: 20px;
}

#company .section_01.anchor_nav .anchor_button {
  display: block;
  padding: 20px 30px;
  background-color: #17A561;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  flex: 1;
}

#company .section_01.anchor_nav .anchor_button:hover {
  background-color: #0f854d;
  transform: translateY(-2px);
}

#company .section_02.omoi {
  background-color: #ffffff;
  padding: 0;
}

#company .section_02.omoi .omoi_container {
  position: relative;
  min-height: 400px;
  overflow: visible;
}

/* レンガの段（KVと同じ） */
#company .section_02.omoi .brick_row {
  height: 40px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  opacity: 0.6;
  filter: blur(0.5px);
}

#company .section_02.omoi .brick_row_odd {
  background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 151px,
      rgba(255, 255, 255, 0.5) 151px,
      rgba(255, 255, 255, 0.5) 154px);
  background-color: rgba(225, 239, 230, 0.85);
}

#company .section_02.omoi .brick_row_even {
  background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 151px,
      rgba(255, 255, 255, 0.5) 151px,
      rgba(255, 255, 255, 0.5) 154px);
  background-position: -75.5px 0;
  background-color: rgba(225, 239, 230, 0.85);
}

/* 文字が乗る部分 */
#company .section_02.omoi .omoi_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 60px 40px;
}

#company .section_02.omoi .omoi_text {
  line-height: 2;
  position: relative;
  z-index: 1;
}

#company .section_03.gaiyou {
  background-color: #E1EFE6;
}

#company .section_03.gaiyou .gaiyou_table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

#company .section_03.gaiyou .gaiyou_table th {
  border: 1px solid #fff;
  background-color: #17A561;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  padding: 15px 20px;
  text-align: left;
  width: 200px;
}

#company .section_03.gaiyou .gaiyou_table td {
  border: 1px solid #E1EFE6;
  background-color: #fff;
  font-weight: 500;
  padding: 15px 20px;
}

#company .section_03.gaiyou .gaiyou_image {
  width: 800px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}

#company .section_04.shikaku {
  background-color: #ffffff;
}

#company .section_04.shikaku .shikaku_list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

#company .section_04.shikaku .shikaku_list li {
  padding: 20px 0;
  border-bottom: 1px solid #17A561;
}

#company .section_04.shikaku .shikaku_list li:first-child {
  border-top: 1px solid #17A561;
}

#company .section_04.shikaku .shikaku_images {
  display: flex;
  gap: 40px;
  justify-content: center;
}

#company .section_04.shikaku .shikaku_item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

#company .section_04.shikaku .shikaku_item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}

#company .section_04.shikaku .shikaku_img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

#company .section_04.shikaku .shikaku_caption {
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
  color: #202824;
  text-decoration: none;
}

#company .section_05.zankon,
#betonblock .section_05.zankon {
  background-color: #ffefec;
}

#company .section_05.zankon .zankon_title,
#betonblock .section_05.zankon .zankon_title {
  position: relative;
  background-color: #EF401D;
  color: #ffffff;
  border-radius: 8px;
  padding: 40px 20px 30px;
  width: 600px;
  margin: 0 auto;
}

#company .section_05.zankon .zankon_title p,
#betonblock .section_05.zankon .zankon_title p {
  margin: 0;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 1.1px;
  line-height: 1.6;
}

#company .section_05.zankon .zankon_title .puchi_small,
#betonblock .section_05.zankon .zankon_title .puchi_small {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: solid 2px #EF401D;
  border-radius: 5px;
  padding: 8px 20px;
  width: 250px;
  color: #202824;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

#company .section_05.zankon .zankon_title .puchi_small::after,
#betonblock .section_05.zankon .zankon_title .puchi_small::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 30%;
  transform: translateX(-50%);
  width: 8px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

#company .section_05.zankon .zankon_content,
#betonblock .section_05.zankon .zankon_content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

#company .section_05.zankon .zankon_left,
#betonblock .section_05.zankon .zankon_left {
  flex: 1;
}

#company .section_05.zankon .zankon_right,
#betonblock .section_05.zankon .zankon_right {
  width: 290px;
  flex-shrink: 0;
  margin-left: auto;
}

#company .section_05.zankon .zankon_text,
#betonblock .section_05.zankon .zankon_text {
  line-height: 2;
  margin-bottom: 20px;
}

#company .section_05.zankon .btn_under,
#betonblock .section_05.zankon .btn_under {
  margin: 0 auto;
}

#company .section_05.zankon .zankon_link_box,
#betonblock .section_05.zankon .zankon_link_box {
  display: block;
  border: 2px solid #EF401D;
  border-radius: 8px;
  padding: 20px 30px 13px;
  max-width: 100%;
  width: 31em;
  margin: 0 auto;
  background-color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 0 #EF401D;
}

#company .section_05.zankon .zankon_link_inner,
#betonblock .section_05.zankon .zankon_link_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

#company .section_05.zankon .zankon_ext_icon,
#betonblock .section_05.zankon .zankon_ext_icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

#company .section_05.zankon .zankon_link_box:hover,
#betonblock .section_05.zankon .zankon_link_box:hover {
  transition: all 0.3s ease;
  transform: translateY(2px);
  box-shadow: 0 0 0 rgba(239, 64, 29, 0.3);
}

#company .section_05.zankon .zankon_link,
#betonblock .section_05.zankon .zankon_link {
  display: block;
  color: #EF401D;
  margin-bottom: 10px;
}

#company .section_05.zankon .zankon_image,
#betonblock .section_05.zankon .zankon_image {
  width: 290px;
  height: auto;
  border-radius: 8px;
}

#company .section_06.esg {
  background-color: #fff;
}

#company .section_06.esg .esg_lead {
  line-height: 2;
  margin-bottom: 60px;
}

#company .section_06.esg .esg_items {
  display: flex;
  gap: 40px;
}

#company .section_06.esg .esg_item {
  text-align: center;
}

#company .section_06.esg .esg_item .sub_title {
  margin-top: -5px;
  margin-bottom: 20px;
}

#company .section_06.esg .esg_icon_row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

#company .section_06.esg .esg_icon {
  width: 60px;
  height: 60px;
  border-radius: 5px;
}

#company .section_06.esg .esg_main_image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

#company .section_06.esg .esg_text {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 20px;
}

#company .section_06.esg .esg_note {
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  line-height: 1.8;
  background-color: #E1EFE6;
  border: solid 2px #17A561;
}

/* 事業案内 work */

#work .section_01.anchor_nav {
  background-color: #ffffff;
  border-bottom: 3px solid #17A561;
}

#work .section_01.anchor_nav .anchor_buttons {
  display: flex;
  gap: 20px;
}

#work .section_01.anchor_nav .anchor_button {
  display: block;
  padding: 20px 30px;
  background-color: #17A561;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  flex: 1;
}

#work .section_01.anchor_nav .anchor_button:hover {
  background-color: #0f854d;
  transform: translateY(-2px);
}

#work .section_02.omoi .omoi_container {
  position: relative;
  min-height: 200px;
  overflow: visible;
}

/* レンガの段（KVと同じ） */
#work .section_02.omoi .brick_row {
  height: 40px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  opacity: 0.6;
  filter: blur(0.5px);
}

#work .section_02.omoi .brick_row_odd {
  background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 151px,
      rgba(255, 255, 255, 0.5) 151px,
      rgba(255, 255, 255, 0.5) 154px);
  background-color: rgba(225, 239, 230, 0.85);
}

#work .section_02.omoi .brick_row_even {
  background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 151px,
      rgba(255, 255, 255, 0.5) 151px,
      rgba(255, 255, 255, 0.5) 154px);
  background-position: -75.5px 0;
  background-color: rgba(225, 239, 230, 0.85);
}

/* 文字が乗る部分 */
#work .section_02.omoi .omoi_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 60px 40px;
}

#work .section_02.omoi .omoi_text {
  line-height: 2;
  position: relative;
  z-index: 1;
}

#work .section_03.block_sales {
  background-color: #E1EFE6;
}

#work .section_03.block_sales .container {
  position: relative;
}

#work .section_03.block_sales .sub_title {
  margin-bottom: 40px;
  margin-top: -10px;
  margin-left: -140px;
  color: #17A561;
  letter-spacing: 2px;
}

#work .section_03.block_sales .main_content {
  gap: 50px;
  margin-bottom: 60px;
}

#work .section_03.block_sales .image_box img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

#work .section_03.block_sales .text_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 60%;
}

#work .section_03.block_sales .description {
  line-height: 1.8;
}

#work .section_03.block_sales .usage_list {
  gap: 20px;
}

#work .section_03.block_sales .usage_item {
  text-align: center;
}

#work .section_03.block_sales .usage_image {
  margin-bottom: 15px;
}

#work .section_03.block_sales .usage_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}

#work .section_03.block_sales .usage_text {
  font-weight: bold;
  color: #17A561;
}

#work .section_03.block_sales .feature_box {
  position: relative;
  border: 2px solid #17A561;
  border-radius: 8px;
  padding: 60px;
  background-color: #ffffff;
}


#work .section_03.block_sales .feature_box .point {
  position: relative;
  z-index: 2;
  width: 111px;
  height: 38px;
  background-color: #17A561;
  border-radius: 5px;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  display: flex;
  flex-direction: row;
  margin: -20px 0 20px;
}

#work .section_03.block_sales .feature_box .point img {
  width: 16px;
  height: 13px;
  margin-left: 16px;
}

#work .section_03.block_sales .feature_box .point p {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  margin-left: 5px;
}

#work .section_03.block_sales .feature_row {
  gap: 60px;
  margin-bottom: 40px;
}

#work .section_03.block_sales .feature_row:last-child {
  margin-bottom: 0;
}

#work .section_03.block_sales .feature_item {
  width: 50%;
}

#work .section_03.block_sales .feature_title {
  display: block;
  margin-bottom: 15px;
  color: #17A561;
  font-weight: bold;
}

#work .section_03.block_sales .feature_title strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #0c7944;
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

#work .section_03.block_sales .feature_text {
  line-height: 1.8;
}

#work .section_03.block_sales .kuwashiku {
  margin: 70px auto 0;
  width: 341px;
}

#work .section_03.block_sales .kuwashiku_link {
  display: block;
  position: relative;
  background-color: #EF401D;
  width: 341px;
  height: 86px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#work .section_03.block_sales .kuwashiku_link:hover {
  transform: translateY(-3px);
  background-color: #BA1F00;
}

#work .section_03.block_sales .kuwashiku_text {
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1.1px;
  color: #fff;
  text-align: center;
  padding-top: 23px;
  margin: 0;
}

#work .section_03.block_sales .kuwashiku_fukidashi {
  position: absolute;
  color: #EF401D;
  background-color: #fff;
  top: -31px;
  left: 23px;
  width: 294px;
  height: 43px;
  border: solid 2px #EF401D;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.75px;
  text-align: center;
  padding: 5px 0 0 6px;
}

#work .section_03.block_sales .kuwashiku_fukidashi::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 20px;
  width: 8px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

#work .section_04.concrete_sales {
  background-color: #fff;
}

#work .section_04.concrete_sales .main_content {
  gap: 50px;
  margin-bottom: 60px;
}

#work .section_04.concrete_sales .image_box img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

#work .section_04.concrete_sales .text_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#work .section_04.concrete_sales .description {
  line-height: 1.8;
}

#work .section_04.concrete_sales .usage_list {
  gap: 20px;
}

#work .section_04.concrete_sales .usage_item {
  text-align: center;
}

#work .section_04.concrete_sales .usage_image {
  margin-bottom: 15px;
}

#work .section_04.concrete_sales .usage_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}

#work .section_04.concrete_sales .usage_text {
  font-weight: bold;
  color: #17A561;
}

#work .section_04.concrete_sales .feature_box {
  position: relative;
  border: 2px solid #17A561;
  border-radius: 8px;
  padding: 60px;
  background-color: #ffffff;
}

#work .section_04.concrete_sales .feature_box .point {
  position: relative;
  z-index: 2;
  width: 111px;
  height: 38px;
  background-color: #17A561;
  border-radius: 5px;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  display: flex;
  flex-direction: row;
  margin: -20px 0 20px;
}

#work .section_04.concrete_sales .feature_box .point img {
  width: 16px;
  height: 13px;
  margin-left: 16px;
}

#work .section_04.concrete_sales .feature_box .point p {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  margin-left: 5px;
}

#work .section_04.concrete_sales .feature_row {
  gap: 60px;
  margin-bottom: 40px;
}

#work .section_04.concrete_sales .feature_row:last-child {
  margin-bottom: 0;
}

#work .section_04.concrete_sales .feature_item {
  width: 50%;
}

#work .section_04.concrete_sales .feature_title {
  display: block;
  margin-bottom: 15px;
  color: #17A561;
  font-weight: bold;
}

#work .section_04.concrete_sales .feature_title strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #0c7944;
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

#work .section_04.concrete_sales .feature_text {
  line-height: 1.8;
}

#work .section_05.vehicles {
  background-color: #E1EFE6;
}

#work .section_05.vehicles .sub_title {
  margin-bottom: 60px;
  line-height: 1.8;
}

#work .section_05.vehicles .vehicle_content {
  gap: 50px;
}

#work .section_05.vehicles .image_box img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

#work .section_05.vehicles .text_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#work .section_05.vehicles .vehicle_list {
  gap: 60px;
}

#work .section_05.vehicles .vehicle_type {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#work .section_05.vehicles .vehicle_name {
  color: #17A561;
  font-weight: bold;
}

#work .section_05.vehicles .vehicle_detail {
  list-style: none;
  padding: 0;
  margin: 0;
}

#work .section_05.vehicles .vehicle_detail li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 8px;
}

#work .section_05.vehicles .vehicle_detail li:before {
  content: "・";
  margin-right: 0.5em;
}

#work .section_05.vehicles .note_box {
  background-color: #fff;
  border: 2px solid #17A561;
  border-radius: 8px;
  padding: 20px 30px;
  line-height: 1.8;
}

#work .section_01.anchor_nav {
  background-color: #ffffff;
}

/* ベトンブロック betonblock */

#betonblock .section_01.anchor_nav {
  background-color: #ffffff;
}

#betonblock .section_01.anchor_nav .anchor_buttons_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#betonblock .section_01.anchor_nav .anchor_button {
  width: calc((100% - 40px) / 3);
  padding: 20px 30px;
  background-color: #17A561;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

#betonblock .section_01.anchor_nav .anchor_button:hover {
  background-color: #0f854d;
  transform: translateY(-3px);
}

#betonblock .section_02.whatis_sec {
  background-color: #E1EFE6;
}

#betonblock .section_02.whatis_sec .whatis_content {
  display: flex;
  align-items: center;
  gap: 60px;
}

#betonblock .section_02.whatis_sec .whatis_img {
  width: 300px;
  flex-shrink: 0;
}

#betonblock .section_02.whatis_sec .whatis_img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#betonblock .section_02.whatis_sec .whatis_text {
  width: calc(100% - 360px);
}

#betonblock .section_03.manga_sec {
  background-color: #ffffff;
}

#betonblock .section_03.manga_sec .manga_subtitle {
  margin-bottom: 20px;
  color: #17A561;
  font-weight: bold;
}

#betonblock .section_03.manga_sec .manga_img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}

#betonblock .section_04.merit_sec {
  background-color: #E1EFE6;
}

#betonblock .section_04.merit_sec .trouble_text {
  margin-bottom: 40px;
}

#betonblock .section_04.merit_sec .trouble_text p {
  color: #17A561;
}

#betonblock .section_04.merit_sec .discript_illust_sec {
  margin-bottom: 30px;
}

#betonblock .section_04.merit_sec .hukidashi_wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

#betonblock .section_04.merit_sec .hukidashi_item {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}

#betonblock .section_04.merit_sec .hukidashi_item::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #ffffff;
}

#betonblock .section_04.merit_sec .illust_img {
  margin-bottom: 40px;
}

#betonblock .section_04.merit_sec .illust_img img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

#betonblock .section_04.merit_sec .solution_text {
  padding: 30px;
  background-color: #17A561;
  color: #fff;
  border-radius: 8px;
}

#betonblock .section_04.merit_sec .merit_list {
  display: flex;
  gap: 20px;
}

#betonblock .section_04.merit_sec .merit_item {
  width: calc((100% - 60px) / 4);
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  border: 2px solid #17A561;
  display: flex;
  flex-direction: column;
}

#betonblock .section_04.merit_sec .merit_label {
  background-color: #17A561;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

#betonblock .section_04.merit_sec .merit_top {
  min-height: 170px;
  /* 2行h3が収まる高さに調整 */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#betonblock .section_04.merit_sec .merit_item h3 {
  margin-bottom: 20px;
  color: #17A561;
  text-align: center;
}

#betonblock .section_06.size_sec {
  background-color: #ffffff;
}

#betonblock .section_06.size_sec .size_list {
  display: flex;
  gap: 150px;
}

#betonblock .section_06.size_sec .size_item {
  width: calc((100% - 60px) / 2);
}

#betonblock .section_06.size_sec .size_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #17A561;
}

#betonblock .section_06.size_sec .size_header h3 {
  color: #17A561;
}

#betonblock .section_06.size_sec .price {
  color: #EF401D;
}

#betonblock .section_06.size_sec .size_img {
  margin-bottom: 30px;
}

#betonblock .section_06.size_sec .size_img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#betonblock .section_06.size_sec .top_under_line {
  border-top: 2px solid #E1EFE6;
  border-bottom: 2px solid #E1EFE6;
  padding: 20px 0;
  margin-bottom: 20px;
}

#betonblock .section_06.size_sec .top_under_line ul {
  list-style: none;
  padding: 0;
  margin: 0 30px;
}

#betonblock .section_06.size_sec .top_under_line li {
  padding: 8px 0;
  font-size: 16px;
}

#betonblock .section_06.size_sec .top_under_line li strong {
  color: #17A561;
  font-weight: bold;
  padding-right: 12px;
  font-size: 18px;
}

#betonblock .section_06.size_sec .top_under_line li:last-child strong {
  padding-right: 30px;
}

#betonblock .section_07.spec_sec {
  background-color: #E1EFE6;
}

#betonblock .section_07.spec_sec .container>p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

#betonblock .section_07.spec_sec .flex_3col {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

#betonblock .section_07.spec_sec .flex_3col img {
  width: calc((100% - 60px) / 3);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(7, 124, 68, 0.4);
}

#betonblock .section_07.spec_sec .spec_note {
  padding: 30px;
  text-align: center;
}

#betonblock .section_08.scene_sec {
  background-color: #ffffff;
}

#betonblock .section_08.scene_sec .carousel_wrapper {
  position: relative;
  margin-bottom: 40px;
  padding: 0 80px;
}

#betonblock .section_08.scene_sec .carousel_container {
  overflow: hidden;
  width: 100%;
}

#betonblock .section_08.scene_sec .carousel_track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

#betonblock .section_08.scene_sec .carousel_slide {
  min-width: 33.333%;
  padding: 0 15px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.5;
  transform: scale(0.9);
}

#betonblock .section_08.scene_sec .carousel_slide.active {
  opacity: 1;
  transform: scale(1);
}

#betonblock .section_08.scene_sec .carousel_slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

#betonblock .section_08.scene_sec .carousel_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 180px;
  background-color: #17A561;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

#betonblock .section_08.scene_sec .carousel_btn:hover {
  background-color: #0f854d;
}

#betonblock .section_08.scene_sec .carousel_btn_prev {
  left: 0;
}

#betonblock .section_08.scene_sec .carousel_btn_next {
  right: 0;
}

#betonblock .section_08.scene_sec .carousel_btn span {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

#betonblock .section_08.scene_sec .carousel_btn_prev span {
  transform: translate(-30%, -50%) rotate(-135deg);
}

#betonblock .section_08.scene_sec .carousel_btn_next span {
  transform: translate(-70%, -50%) rotate(45deg);
}

#betonblock .section_08.scene_sec .carousel_indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

#betonblock .section_08.scene_sec .indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #E1EFE6;
  border: 2px solid #17A561;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

#betonblock .section_08.scene_sec .indicator:hover {
  background-color: #d0e5d6;
  transform: scale(1.2);
}

#betonblock .section_08.scene_sec .indicator.active {
  background-color: #17A561;
}

#betonblock .section_08.scene_sec .scene_list {
  display: flex;
  gap: 100px;
  margin-bottom: 40px;
}

#betonblock .section_08.scene_sec .scene_item {
  width: calc((100% - 80px) / 3);
}

#betonblock .section_08.scene_sec .scene_item h3 {
  margin-bottom: 20px;
  color: #17A561;
}

#betonblock .section_08.scene_sec .scene_caution {
  padding: 30px;
  background-color: #E1EFE6;
  border-radius: 8px;
  border: 2px solid #17A561;
  width: 460px;
  margin: 0 auto;
}

#betonblock .section_09.flow_sec {
  background-color: #E1EFE6;
}

#betonblock .section_09.flow_sec .flow_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#betonblock .section_09.flow_sec .flow_item {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #17A561;
}

#betonblock .section_09.flow_sec .flow_content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

#betonblock .section_09.flow_sec .flow_img {
  width: 200px;
  flex-shrink: 0;
}

#betonblock .section_09.flow_sec .flow_img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#betonblock .section_09.flow_sec .flow_text {
  width: calc(100% - 240px);
}

#betonblock .section_09.flow_sec .flow_text_item {
  display: flex;
  gap: 20px;
}

#betonblock .section_09.flow_sec .flow_text h3 {
  margin-bottom: 20px;
  color: #17A561;
}

#betonblock .section_09.flow_sec .flow_text h3 strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #0c7944;
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

#betonblock .section_09.flow_sec .flow_icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

#betonblock .section_09.flow_sec .order_form {
  width: 200px;
  padding: 10px 20px;
  background-color: #EF401D;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}

#betonblock .section_09.flow_sec .order_form:hover {
  background-color: #be2709;
  transition: all 0.3s ease;
  transform: translateY(-3px);
}

#betonblock .section_09.flow_sec .flow_icon {
  background-color: #17A561;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
}

#betonblock .section_09.flow_sec .flow_warning {
  color: #EF401D;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#betonblock .section_09.flow_sec .beton_button_wrap {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

#betonblock .section_09.flow_sec .flow_link_contact {
  display: block;
  width: 266px;
  height: 50px;
  background-color: #17A561;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  margin-top: 20px;
}

#betonblock .section_09.flow_sec .flow_link_contact.beton_red {
  background-color: #EF401D;
}

#betonblock .section_09.flow_sec .flow_link_contact::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 19px;
  right: 10px;
}

#betonblock .section_09.flow_sec .flow_link {
  display: block;
  width: 230px;
  height: 50px;
  background-color: #17A561;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  margin-left: auto;
}

#betonblock .section_09.flow_sec .flow_link::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 19px;
  right: 10px;
}

#betonblock .section_09.flow_sec .flow_link:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease;
  background-color: #0c7944;
}

#betonblock .section_09.flow_sec .flow_arrow {
  text-align: center;
  position: relative;
  height: 40px;
}

#betonblock .section_09.flow_sec .flow_arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 40px solid #17A561;
}

#betonblock .section_10.faq_sec {
  background-color: #ffffff;
}

#betonblock .section_10.faq_sec .faq_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#betonblock .section_10.faq_sec .faq_item {
  border: 2px solid #17A561;
  border-radius: 8px;
  overflow: hidden;
}

#betonblock .section_10.faq_sec .faq_question {
  background-color: #E1EFE6;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
}

#betonblock .section_10.faq_sec .faq_question:hover {
  background-color: #d0e5d6;
}

#betonblock .section_10.faq_sec .faq_q_mark {
  width: 50px;
  height: 50px;
  background-color: #17A561;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#betonblock .section_10.faq_sec .faq_q_text {
  width: calc(100% - 120px);
}

#betonblock .section_10.faq_sec .faq_toggle {
  width: 50px;
  height: 50px;
  position: relative;
  flex-shrink: 0;
}

#betonblock .section_10.faq_sec .faq_toggle::before,
#betonblock .section_10.faq_sec .faq_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #17A561;
  transition: all 0.3s;
}

#betonblock .section_10.faq_sec .faq_toggle::before {
  width: 30px;
  height: 3px;
  transform: translate(-50%, -50%);
}

#betonblock .section_10.faq_sec .faq_toggle::after {
  width: 3px;
  height: 30px;
  transform: translate(-50%, -50%);
}

#betonblock .section_10.faq_sec .faq_item.active .faq_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

#betonblock .section_10.faq_sec .faq_answer {
  background-color: #ffffff;
  padding: 30px;
  display: none;
  border-top: 1px solid #E1EFE6;
  gap: 20px;
}

#betonblock .section_10.faq_sec .faq_item.active .faq_answer {
  display: flex;
}

#betonblock .section_10.faq_sec .faq_a_mark {
  width: 50px;
  height: 50px;
  background-color: #EF401D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#betonblock .section_10.faq_sec .faq_a_text {
  width: calc(100% - 70px);
}

/* 採用情報 recruit */

#recruit .section_01.anchor_nav {
  background-color: #ffffff;
  border-bottom: 3px solid #17A561;
}

#recruit .section_01.anchor_nav .anchor_buttons {
  display: flex;
  gap: 20px;
}

#recruit .section_01.anchor_nav .anchor_button {
  display: block;
  padding: 20px 30px;
  background-color: #17A561;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  flex: 1;
}

#recruit .section_01.anchor_nav .anchor_button:hover {
  background-color: #0f854d;
  transform: translateY(-2px);
}

#recruit .section_02.omoi {
  background-color: #ffffff;
  padding: 0;
}

#recruit .section_02.omoi .omoi_container {
  position: relative;
  min-height: 200px;
  overflow: visible;
}

/* レンガの段（KVと同じ） */
#recruit .section_02.omoi .brick_row {
  height: 40px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  opacity: 0.6;
  filter: blur(0.5px);
}

#recruit .section_02.omoi .brick_row_odd {
  background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 151px,
      rgba(255, 255, 255, 0.5) 151px,
      rgba(255, 255, 255, 0.5) 154px);
  background-color: rgba(225, 239, 230, 0.85);
}

#recruit .section_02.omoi .brick_row_even {
  background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 151px,
      rgba(255, 255, 255, 0.5) 151px,
      rgba(255, 255, 255, 0.5) 154px);
  background-position: -75.5px 0;
  background-color: rgba(225, 239, 230, 0.85);
}

/* 文字が乗る部分 */
#recruit .section_02.omoi .omoi_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 60px 40px;
}

#recruit .section_02.omoi .omoi_text {
  line-height: 2;
  position: relative;
  z-index: 1;
}

#recruit .section_03.jinbutsu {
  background-color: #E1EFE6;
}

#recruit .section_03.jinbutsu .jinbutsu_list {
  display: flex;
  gap: 40px;
}

#recruit .section_03.jinbutsu .jinbutsu_item {
  flex: 1;
  padding: 40px 30px;
  border: 2px solid #E1EFE6;
  border-radius: 8px;
  border-color: #17A561;
  background-color: #fff;
}

#recruit .section_03.jinbutsu .jinbutsu_item_title {
  display: block;
  color: #17A561;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}

#recruit .section_03.jinbutsu .jinbutsu_item_text {
  line-height: 1.8;
}

#recruit .section_04.shafuu {
  background-color: #fff;
}

#recruit .section_04.shafuu .shafuu_content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

#recruit .section_04.shafuu .shafuu_image {
  width: 40%;
  flex-shrink: 0;
}

#recruit .section_04.shafuu .shafuu_image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#recruit .section_04.shafuu .shafuu_text_area {
  flex: 1;
}

#recruit .section_04.shafuu .shafuu_item {
  margin-bottom: 35px;
}

#recruit .section_04.shafuu .shafuu_item:last-child {
  margin-bottom: 0;
}

#recruit .section_04.shafuu .shafuu_item_title {
  color: #17A561;
  margin-bottom: 15px;
}

#recruit .section_04.shafuu .shafuu_item_text {
  line-height: 1.8;
}

#recruit .section_05.seido {
  background-color: #E1EFE6;
}

#recruit .section_05.seido .seido_block {
  margin-bottom: 80px;
}

#recruit .section_05.seido .seido_block:last-child {
  margin-bottom: 0;
}

#recruit .section_05.seido .seido_subtitle {
  color: #17A561;
  margin-bottom: 27px;
  border-bottom: 3px solid #E1EFE6;
  text-align: center;
}

#recruit .section_05.seido .seido_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#recruit .section_05.seido .seido_item {
  width: calc((100% - 60px) / 3);
  padding: 30px;
  border: 2px solid #17A561;
  border-radius: 8px;
}

#recruit .section_05.seido .seido_item {
  background-color: #ffffff;
}

#recruit .section_05.seido .seido_item_title {
  display: block;
  color: #17A561;
  margin-bottom: 20px;
  text-align: center;
}

#recruit .section_05.seido .seido_item_text {
  line-height: 1.8;
  margin-bottom: 10px;
}

#recruit .section_05.seido .seido_item_text:last-child {
  margin-bottom: 0;
}

#recruit .section_05.seido .seido_item_list {
  list-style: none;
  padding-left: 0;
}

#recruit .section_05.seido .seido_item_list li {
  line-height: 1.8;
  padding-left: 1.2em;
  position: relative;
}

#recruit .section_05.seido .seido_item_list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #17A561;
}

#recruit .section_05.seido .seido_shikaku {
  background-color: #E1EFE6;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  position: relative;
}

#recruit .section_05.seido .seido_shikaku::before {
  content: '主な対象資格';
  position: absolute;
  top: -10px;
  left: 20px;
  background-color: #17A561;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

#recruit .section_05.seido .seido_shikaku_list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

#recruit .section_05.seido .seido_shikaku_list li {
  line-height: 1.8;
  padding-left: 1.2em;
  position: relative;
}

#recruit .section_05.seido .seido_shikaku_list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #17A561;
}

#recruit .section_06.boshu {
  background-color: #fff;
}

#recruit .section_06.boshu .tab_container {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

#recruit .section_06.boshu .tab_buttons {
  display: flex;
  border-bottom: 2px solid #E1EFE6;
}

#recruit .section_06.boshu .tab_button {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  transition: all 0.3s;
  position: relative;
}

#recruit .section_06.boshu .tab_button:hover {
  background-color: #f5f5f5;
}

#recruit .section_06.boshu .tab_button.active {
  color: #17A561;
  background-color: #E1EFE6;
}

#recruit .section_06.boshu .tab_button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #17A561;
}

#recruit .section_06.boshu .tab_content {
  display: none;
}

#recruit .section_06.boshu .tab_content.active {
  display: block;
}

#recruit .section_06.boshu .boshu_table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
}

#recruit .section_06.boshu .boshu_table th {
  border: 1px solid #fff;
  background-color: #17A561;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  padding: 20px;
  width: 180px;
  text-align: left;
}

#recruit .section_06.boshu .boshu_table td {
  border: 1px solid #E1EFE6;
  background-color: #fff;
  font-weight: 500;
  padding: 20px;
}

#recruit .section_07.entry {
  background-color: #E1EFE6;
}

#recruit .section_07.entry .entry_container {
  text-align: center;
}

#recruit .section_07.entry .entry_button {
  display: inline-block;
  background-color: #EF401D;
  color: #fff;
  padding: 20px 80px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  margin-bottom: 30px;
  position: relative;
}

#recruit .section_07.entry .entry_button::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 33px;
  right: 20px;
}

#recruit .section_07.entry .entry_button:hover {
  background-color: #BA1F00;
  transform: translateY(-3px);
}

#recruit .section_07.entry .entry_note {
  line-height: 1.8;
}

/* お問い合わせ　contact */

/*------------------- エントリーフォーム -------------------*/

/* フォーム説明エリア */
.form_intro {
  text-align: center;
}

.form_intro h2 {
  color: #17a561;
}

#beton_order .section_divider {
  border-left: none;
  border-right: none;
}

#beton_order .section_divider td {
  padding: 40px 0 15px;
  background: transparent;
}

#beton_order .bgc_order {
  margin: 0 auto;
  background-color: #17a561;
  color: #fff;
  padding: 5px;
  width: 90%;
  text-align: center;
  border-radius: 5px;
}

#beton_order .bgc_order:last-child {
  width: 98%;
}

.form_intro p {
  line-height: 1.6;
}

/* フォームスタイリング */
.entry_form {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.c_table_01 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  /*border: 1px solid #17a561;*/
}

.c_table_01 table th {
  background: #17a561;
  color: #fff;
  font-weight: bold;
  padding: 20px 15px;
  text-align: left;
  border-bottom: 1px solid #fff;
  vertical-align: top;
  width: 200px;
  min-width: 200px;
}

.c_table_01 table th div.th_flex {
  gap: 10px;
}

.c_table_01 table th .mini {
  font-weight: normal;
  font-size: 14px;
  margin-top: 10px;
  line-height: 18px;
}

.c_table_01 table td {
  background: #ffffff;
  padding: 20px 15px;
  border-bottom: 1px solid #17a561;
  border-right: 1px solid #17a561;
  border-left: none;
  vertical-align: top;
}

.c_table_01 table tr:last-child td,
.c_table_01 table tr:last-child th {
  /*border-bottom: none;*/
}

.c_table_01 table .zero {
  color: #888;
}

.c_table_01 table tr:nth-child(7) td {
  border-left: 1px solid #17a561;
}

.c_table_01 table tr:first-child td {
  border-top: 1px solid #17a561;
}

.c_table_01 table tr:first-child th {
  border-radius: 12px 0 0 0;
}

.c_table_01 table tr:first-child td {
  border-radius: 0 12px 0 0;
}

.c_table_01 table tr:last-child th {
  border-radius: 0 0 0 12px;
}

.c_table_01 table tr:last-child td {
  border-radius: 0 0 12px 0;
}

/* 必須マーク */
.hissu {
  background: #dc3545;
  color: white;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 3px;
  margin-right: 70px;
  font-weight: normal;
  max-width: 40px;
}

#beton_order .hissu {
  margin-right: 10px;
}

/* 入力フィールド */
.entry_form input[type="text"],
.entry_form input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.entry_form input[type="text"]:focus,
.entry_form input[type="email"]:focus {
  border-color: #17a561;
  outline: none;
  box-shadow: 0 0 5px rgba(27, 73, 152, 0.2);
}

/* チェックボックスグループ */
.checkbox_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox_group label {
  display: flex !important;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.checkbox_group input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.checkbox_group input[type="radio"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.checkbox_group input[type="number"] {
  width: 50px;
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #e3e3e3;
  border-radius: 0.23em;
  background: #fbfbfb;
  padding: 0px 6px;
}

.checkbox_group .mini {
  font-size: 14px;
  margin-left: 40px;
}

/* 住所入力エリア */
.address_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zip_code {
  display: flex;
  align-items: center;
  gap: 5px;
}

.zip_code p {
  margin: 0;
  font-weight: bold;
  color: #17a561;
}

.zip_input {
  width: 150px !important;
  /* padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px; */
}

.address_inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ファイルアップロードエリア */
.file_upload_area {
  padding: 20px;
  background: #f8fdff;
  text-align: center;
}

.file_upload_area p {
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.file_input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  background: #fbfbfb;
}

/* テキストエリア */
.entry_textarea {
  width: 100% !important;
  min-height: 150px;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.6;
  resize: vertical;
  box-sizing: border-box;
  font-family: inherit;
}

.entry_textarea:focus {
  border-color: #17a561;
  outline: none;
  box-shadow: 0 0 5px rgba(27, 73, 152, 0.2);
}

/* ポップアップスタイル */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.popup.is-show {
  display: block;
}

.popup-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  background: white;
  margin: 5% auto;
  padding: 30px;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: white;
}

.close-btn:hover {
  background: #999;
}

.black-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* タブレット対応 */
@media (max-width: 1200px) and (min-width: 901px) {
  .entry_form {
    padding: 30px;
  }

  .office_contact_list {
    gap: 30px;
  }

  .c_table_01 table th {
    width: 180px;
    min-width: 180px;
  }
}

/* お問い合わせ */

/* セクション01：電話でのお問い合わせ（メインカラー） */
.section_01.contact_info {
  background-color: #ffffff;
}

.section_01.contact_info .inner_1000 {
  text-align: center;
}

/* 連絡メッセージ */
.section_01.contact_info .contact_message {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* 連絡先詳細 */
.section_01.contact_info .contact_details {
  background-color: #f0f7f1;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

/* ニュース　新着　news */

/* ============================================
   #news / section_01 : カテゴリフィルターボタン
   ============================================ */

#news .section_01.anchor_nav {
  background-color: #ffffff;
  border-bottom: 3px solid #17A561;
}

#news .section_01.anchor_nav .flex_4col {
  display: flex;
  gap: 20px;
}

#news .section_01.anchor_nav .anchor_button {
  display: block;
  padding: 20px 30px;
  background-color: #17A561;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  flex: 1;
}

#news .section_01.anchor_nav .anchor_button:hover,
#news .section_01.anchor_nav .anchor_button.is_active {
  background-color: #0f854d;
  transform: translateY(-2px);
}


/* ============================================
   #news / section_02 : 記事一覧
   ============================================ */

#news .section_02.news_list {
  background-color: #E1EFE6;
}

#news .section_02.news_list .contain {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}

#news .section_02.news_list .contain:last-child {
  margin-bottom: 0;
}

#news .section_02.news_list .news_meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#news .section_02.news_list .news_date {
  font-weight: bold;
  white-space: nowrap;
  width: 10%;
}

#news .section_02.news_list .news_category {
  display: inline-block;
  background-color: #17A561;
  color: #ffffff;
  font-weight: bold;
  padding: 4px 20px;
  border-radius: 4px;
  white-space: nowrap;
  width: 10%;
  text-align: center;
}

#news .section_02.news_list .contain h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

#news .section_02.news_list .news_body {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
}

#news .section_02.news_list .news_thumb_placeholder {
  width: 200px;
  height: 150px;
  background-color: #E1EFE6;
  border-radius: 4px;
  flex-shrink: 0;
}

#news .section_02.news_list .news_thumb {
  width: 240px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 4px;
  background-color: #e0e0e0;
  overflow: hidden;
}

#news .section_02.news_list .news_body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  display: block;
}

#news .section_02.news_list .honbun {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 70%;
  min-width: 200px;
}

#news .section_02.news_list .honbun p {
  line-height: 1.8;
}

#news .section_02.news_list .news_button a {
  display: block;
  width: 160px;
  padding: 10px 36px;
  background-color: #17A561;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  position: relative;
  margin-left: auto;
}

#news .section_02.news_list .news_button a::after {
  position: absolute;
  content: '';
  background-image: url(../img/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 13px;
  top: 19px;
  right: 10px;
}

#news .section_02.news_list .news_button a:hover {
  background-color: #128a50;
}


/* ============================================
   #news / section_03 : ページャー
   ============================================ */

#news .section_03.pager {
  background-color: #ffffff;
}

#news .section_03.pager .pager_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#news .section_03.pager .pager_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid #17A561;
  border-radius: 4px;
  color: #17A561;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

#news .section_03.pager .pager_item:hover,
#news .section_03.pager .pager_item.is_current {
  background-color: #17A561;
  color: #ffffff;
}

#news .section_03.pager .pager_ellipsis {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #17A561;
  font-weight: bold;
  pointer-events: none;
}

/* ============================================
   #news_single / section_01 : 記事ヘッダー
   ============================================ */

#news_single .section_01.single_header {
  background-color: #ffffff;
}

#news_single .section_01.single_header .single_meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

#news_single .section_01.single_header .news_date {
  white-space: nowrap;
}

#news_single .section_01.single_header .news_category {
  display: inline-block;
  background-color: #17A561;
  color: #ffffff;
  font-weight: bold;
  padding: 4px 20px;
  border-radius: 4px;
  white-space: nowrap;
}

#news_single .section_01.single_header .single_title {
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 3px solid #17A561;
  padding-bottom: 20px;
}


/* ============================================
   #news_single / section_02 : 記事本文
   ============================================ */

#news_single .section_02.single_body {
  background-color: #E1EFE6;
}

#news_single .section_02.single_body .single_thumb {
  margin-bottom: 40px;
}

#news_single .section_02.single_body .news_thumb_placeholder.single_thumb_placeholder {
  width: 100%;
  height: 600px;
  background-color: #c8dece;
  border-radius: 8px;
}

#news_single .section_02.single_body .single_thumb_wrap {
  display: block;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 4 / 3;
  background-color: #e0e0e0;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto 40px;
}

#news_single .section_02.single_body .single_thumb_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

#news_single .section_02.single_body .single_content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 60px;
}

#news_single .section_02.single_body .single_content p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
}

#news_single .section_02.single_body .single_content p:last-child {
  margin-bottom: 0;
}

#news_single .section_02.single_body .single_content strong {
  font-weight: bold;
  color: #17A561;
}


/* ============================================
   #news_single / section_03 : 前後記事ナビ
   ============================================ */

#news_single .section_03.single_nav {
  background-color: #ffffff;
}

#news_single .section_03.single_nav .prev_next_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

#news_single .section_03.single_nav .nav_prev,
#news_single .section_03.single_nav .nav_next {
  display: flex;
  gap: 8px;
  color: #17A561;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
}

#news_single .section_03.single_nav .nav_prev:hover,
#news_single .section_03.single_nav .nav_next:hover {
  opacity: 0.7;
}

#news_single .section_03.single_nav .nav_arrow {
  font-size: 30px;
  line-height: 25px;
}

#news_single .section_03.single_nav .nav_index {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #17A561;
  border-radius: 4px;
  color: #17A561;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

#news_single .section_03.single_nav .nav_index:hover {
  background-color: #17A561;
  color: #ffffff;
}

.single_thumb_wrap {
  position: relative;
  margin-bottom: 40px;
}

.single_thumb_img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 600px;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: #fff;
  z-index: 10;
}

.map-wrapper iframe {
  display: block;
}

.fixed_bottom_form {
  display: none;
}