@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  scroll-behavior: smooth;
  scroll-padding-top: -50px;
}

ol,
ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a,
button {
  color: inherit;
  transition: 0.3s;
}

a:hover,
button:hover {
  text-decoration: none;
  opacity: 0.7;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

input,
textarea,
select,
option {
  font: inherit;
  color: inherit;
}

input:focus,
textarea:focus,
select:focus,
option:focus {
  outline: none;
}

input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="submit"],
input[type="button"],
button {
  font: inherit;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background: none;
}

input[type="submit"]:focus,
input[type="button"]:focus,
button:focus {
  outline: none;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {
  outline-offset: -2px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}


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

html {
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "メイリオ", sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  zoom: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.wrapper,
.keyvisual__inner,
.keyvisual-lower__inner {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

:root {
  --wrapper-padding: 10px;
  --wrapper: 1000px;
  --wrapper02: 980px;
  --space: max(10px,
      calc((100% - calc(var(--wrapper) - var(--wrapper-padding) * 2)) / 2));
}

@media only screen and (max-width: 1199px) {

  .wrapper,
  .wrapper-mv,
  .wrapper-02 {
    padding-left: var(--wrapper-padding);
    padding-right: var(--wrapper-padding);
  }
}

p {
  font-size: 80%;
}

/* ----- header ----- */

header p {
  font-size: 1.1rem;
}

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

.header1 {
  display: flex;
  justify-content: space-between;
}

.g_navi {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.g_navi li {
  flex: 1;
  text-align: center;
  text-decoration: none;
}

.g_nav_pc {
  margin: 15px 0;
}

/* レスポンシブメニューのスタイル */
.hamburger-menu {
  display: none;
  /* デフォルトは非表示 */
}

.g_nav_sp {
  display: none;
}

/* 756px以下の画面サイズでのみハンバーガーメニューアイコンを表示 */
@media screen and (max-width: 960px) {
  header .logo {
    margin-top: 0px;
  }

  .head_contact {
    display: none;
  }

  .g_nav_pc {
    display: none;
  }

  .g_nav_sp {
    display: block;
  }

  #masthead {
    position: relative;
  }

  .header-right {
    position: relative;
  }

  .hamburger-menu {
    display: block;
    /* 表示 */
    position: fixed;
    top: 0;
    right: 0;
    padding: 15px;
    cursor: pointer;
    z-index: 1000;
  }

  /* ハンバーガーメニューアイコンのスタイル */
  .hamburger-icon {
    width: 30px;
    height: 30px;
    position: relative;
  }

  /* バーのスタイル */
  .bar {
    width: 100%;
    height: 3px;
    background-color: #f17b17;
    position: absolute;
    transition: transform 0.3s ease;
    /* アニメーション */
  }

  .bar:nth-child(1) {
    top: 0;
  }

  .bar:nth-child(2) {
    top: 10px;
  }

  .bar:nth-child(3) {
    top: 20px;
  }


  /* アクティブ時のアニメーション */
  .hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: #fff;
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
    background-color: #fff;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #fff;
  }

  /* ドロワーメニューのスタイル */
  .g_nav_drawer {
    padding: 50px 10px;
    display: block;
    /* デフォルトは非表示 */
    position: fixed;
    top: 0px;
    right: -50%;
    /* 右側に隠す */
    width: 50%;
    height: 100%;
    background-color: #f17b17;
    transition: right 0.3s ease;
    /* 右からのスライドアニメーション */
    z-index: 999;
    /* 他の要素より上に表示 */
    overflow-y: auto;
    /* メニューが画面より大きい場合にスクロール可能にする */
  }

  /* ドロワーメニューのリンクスタイル */
  .g_nav_drawer ul {
    list-style-type: none;
    padding: 0;
  }

  .g_nav_drawer li {
    margin-bottom: 10px;
    border-bottom: 1px solid #fff;
  }

  .g_nav_drawer a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
  }

  .header-right .g_nav {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0;
  }
}

.g_nav_drawer.active {
  right: 0;
  /* 右からスライドして表示 */
}

/* ----- header end ----- */


.main_container {
  background-color: #f9f5f2;
  padding-top: 20px;
  margin: 0 auto;
}

.lm_530 {
  max-width: 530px;
  margin: auto;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mb_30 {
  margin-bottom: 30px;
}

.tx_b {
  font-weight: bold;
}

.link_u {
  display: block;
  text-decoration: underline;
  text-decoration-color: #d87c15;
  text-underline-offset: 2px;
  text-indent: 1.6rem;
}

.link_u2 {
  text-decoration: underline;
  text-decoration-color: #d87c15;
  text-underline-offset: 2px;
}

.flex_b {
  display: flex;
}

.title01 {
  background-image: url("../img/ttl_underline.png");
  background-position: bottom;
  background-repeat: repeat-x;
  color: #5d3b20;
  font-weight: bold;
  font-size: 135%;
}

.title01:before {
  content: url("../img/ttl_icon.png");
  margin-right: 5px;
}

.top_bt_content ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.top_bt_content li {
  flex: 1;
  text-align: center;
}

.gr_bt {
  background: #76a537;
  padding: 10px 0;
  color: white;
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 30px 0;
}

.top_2col {
  display: flex;
  justify-content: space-between;
}

.top_2col h3 {
  position: relative;
}

.top_2col .left,
.top_2col .right {
  flex: 1;
}

.top_2col h3 a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
}

.work_col {
  border: 1px solid #d97d17;
  padding-bottom: 10px;
}

.voice_col {
  border: 1px solid #5e9514;
  padding-bottom: 10px;
}

.work-title span {
  background-color: #ff8c00;
  font-size: 70%;
  color: white;
  padding: 1px 5px 0 5px;
}

.work-posts,
.voice-posts {
  padding: 10px;
}

.work-posts li,
.voice-posts li {
  min-height: 60px;
  max-height: 65px;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}

.work-title a,
.voice-title a {
  display: block;
  font-size: 80%;
}

.work-thumbnail,
.voice-thumbnail {
  width: 20%;
  max-height: 100%;
}

.work-thumbnail img,
.voice-thumbnail img {
  width: 81px !important;
  height: 55px !important;
  object-fit: cover !important;
}

@media screen and (max-width: 960px) {
  .top_2col {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}

.sec06 h2 {
  position: relative;
}

.sec06 h2 a {
  position: absolute;
  top: -20%;
  right: 2%;
}

.news1 {
  background-color: #9bbb59;
  padding: 0 2px;
  width: 7em;
  color: white;
  margin-left: 1em;
  margin-right: 1em;
  text-align: center;
  font-size: 80%;
  display: inline-block;
}

.news-posts a {
  display: block;
  text-decoration: underline;
  text-decoration-color: #704609;
  text-underline-offset: 2px;
  text-indent: 1.6rem;
}

.news-posts li {
  padding: 10px 0;
  border-bottom: 1px dotted #704609;
}

.insta_wrap iframe {
  max-width: 100% !important;
}

.foot_ba_wrap,
.foot_ba_wrap2 {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 10px;
  max-width: 1000px;
}



.foot_ba_wrap2 .banner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 auto;
  max-width: 1000px;
}

.foot_ba_wrap2 .banner {
  /*     flex: 1 1 calc(25% - 10px); */
  text-align: center;
  box-sizing: border-box;
}

.foot_ba_wrap2 .banner a {
  display: block;
  text-decoration: none;
  max-width: 240px;
}

@media (max-width: 768px) {
  .foot_ba_wrap2 .banner {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .foot_ba_wrap2 .banner {
    flex: 1 1 100%;
  }
}

.foot_wrap {
  border-top: solid 7px #ef7917;
}

.foot_link_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fooot_link_wrap ul {
  padding: 0;
  margin: 0;
  flex: 1;
}

.foot_link_wrap a {
  font-size: 1.2rem;
}

.foot_wrap p {
  margin-top: 15px;
  font-size: 1.2rem;
}


#copyright {
  background-color: #424242;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  padding: 15px 0;
}

/* ----- index end ----- */

#side_b {
  width: 200px;
}

#main_b {
  width: 780px;
}

@media screen and (max-width: 960px) {
  .global_flex {
    flex-direction: column-reverse;
  }

  #side_b {
    margin-top: 30px;
    width: 100%;
  }

  #main_b {
    width: 100%;
  }
}

.global_flex {
  display: flex;
  justify-content: space-between;
}

.ttl03 {
  color: #ef7917;
  margin: 30px 0;
  font-size: 1.5em;
  font-weight: bold;
}

.ttl04 {
  color: #d87c15;
  font-size: 1.6rem;
  font-weight: bold;
}

.under_2col {
  display: flex;
  justify-content: space-between;
}

.under_2col .left {
  width: 68%;
}

.under_2col .right {
  width: 30%;
}

@media (max-width: 768px) {
  .under_2col {
    flex-direction: column;
  }

  .under_2col .left {
    width: 100%;
  }

  .under_2col .right {
    align-items: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.gr_bt2 {
  color: #fff;
  padding: 10px 0;
  border-radius: 10px;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background-color: #7bb232;
}

.col3_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.col3_wrap * {
  flex: 1 1 calc(33.33% - 20px);
  text-align: center;
  box-sizing: border-box;
}

.col2_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.col2_wrap * {
  flex: 1 1 calc(50% - 20px);
  text-align: center;
  box-sizing: border-box;
}

.mw_270 * {
  max-width: 270px;
}

.mw_270 {
  justify-content: center;
}


@media (max-width: 768px) {
  .col3_wrap * {
    flex: 1 1 100%;
  }

  .wr_80 * {
    width: 80%;
  }
}

.line_wrap {
  margin-bottom: 20px;
}

/* ----- side ----- */
.side_link_wrap {
  margin-top: -20px;
}

.side_ttl {
  width: 100%;
  background-image: url('../img/side_subttl.png');
  color: white;
  padding: 15px;
  margin-bottom: 2px;
  font-weight: normal;
}

.sub_menu li {
  background-image: url('../img/side_menu_back.png');
  width: 100%;
  padding: 10px;
  margin-bottom: 3px;
  font-size: 80%;
  box-shadow: 0px 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.sub_indent {
  text-indent: 1em;
}

.sub_menu2 li {
  padding: 5px;
  border: 1px solid #5d3b20;
  color: black;
  background-color: #f2f2f2;
  margin-bottom: 5px;
}


@media screen and (max-width: 960px) {
  .side_ttl {
    background-image: none;
    background-color: #5a391f;
    color: white;
    width: 100%;
    padding: 15px 0 0 0;
    text-align: center;
    margin-top: 20px;
  }

  .sub_menu li {
    width: 100%;
    background-image: none;
    background-color: #f8e7d4;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 7px 0 0 0;
    text-align: center;
  }
}

.side_ba_wrap a {
  display: block;
}

.side_ba_wrap2 ul li+li {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .side_ba_wrap2 {
    display: none;
  }
}

.price_col {
  background-color: #fff;
  border: solid 1px #b7a593;
}

.detail_wrap {
  padding: 15px;
}

.pr_col_ttl {
  font-size: 105%;
  font-weight: bold;
  color: #ef7917;
  margin-bottom: 10px;
}

.price_tx span {
  color: #06728e;
  font-weight: bold;
}

.rev_col {
  flex-direction: row-reverse;
}

.rev_col .left {
  width: 58%;
}

.rev_col .right {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .rev_col {
    flex-direction: column-reverse;
  }

  .rev_col .left {
    width: 100%;
    margin-top: 30px;
  }

  .rev_col .right {
    width: 100%;
  }
}


.about_bt_wrap {
  justify-content: center;
  gap: 20px;
}

.about_bt {
  max-width: 200px;
}

.about_ttl {
  text-align: center;
}

.about_ttl img {
  max-width: 300px;
}

.map_wrap iframe {
  width: 100%;
  height: 450px;
}

.staff_photo_wrap * {
  margin-top: 20px;
}



/* ----- contact ----- */
.c-contact-area {
  background: #666666;
  padding: 60px 0;
  margin: 60px 0 0;
}

.c-contact-area p {
  text-align: center;
}

.contact-cnt .contact-ex-text {
  padding: 60px 0;
  text-align: center;
}

@media (max-width: 750px) {
  .contact-cnt .contact-ex-text {
    padding: 30px 0;
  }
}

.contact-cnt .contact-form {
  max-width: 1070px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.contact-cnt .contact-form dl {
  display: table;
  width: 100%;
  border-bottom: 1px solid #CECECE;
  padding: 0;
  margin: 0;
}

@media (max-width: 750px) {
  .contact-cnt .contact-form dl {
    display: block;
    width: 100%;
  }
}

.contact-cnt .contact-form dl:first-child {
  border-top: 1px solid #CECECE;
}

.contact-cnt .contact-form dl dt {
  display: table-cell;
  width: 260px;
  padding: 40px 0;
  position: relative;
  vertical-align: top;
  color: #133E53;
  font-weight: bold;
}

@media (max-width: 750px) {
  .contact-cnt .contact-form dl dt {
    display: block;
    width: 100%;
    padding: 15px 0 5px;
  }
}

.contact-cnt .contact-form dl dt i {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 4px 10px 8px;
  background: #BF0000;
  position: absolute;
  right: 0;
  top: 40px;
  font-style: normal;
  color: #fff;
}

@media (max-width: 750px) {
  .contact-cnt .contact-form dl dt i {
    line-height: 1;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 4px 5px 7px;
    top: inherit;
    bottom: 5px;
  }
}

.contact-cnt .contact-form dl dd {
  display: table-cell;
  padding: 30px 0 30px 30px;
  vertical-align: middle;
}

@media (max-width: 750px) {
  .contact-cnt .contact-form dl dd {
    display: block;
    width: 100%;
    padding: 0 0 15px;
    margin: 0;
  }
}

.contact-cnt .contact-form dl dd .form-control {
  width: 400px;
  color: #000 !important;
}

@media (max-width: 750px) {
  .contact-cnt .contact-form dl dd .form-control {
    display: block;
    width: 100%;
  }
}

/* .contact-cnt .contact-form dl dd textarea {
  width: 100% !important;
} */
.contact-cnt .contact-form dl dd .radio-area {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.contact-cnt .contact-form dl dd .radio-area label {
  margin: 0 30px 0 0;
  font-weight: 400;
}

@media (max-width: 750px) {
  .contact-cnt .contact-form dl dd .radio-area label {
    margin: 0 10px 0 0;
  }
}

.contact-cnt .contact-form dl dd .radio-area label input {
  margin: 0 10px 0 0;
}

@media (max-width: 750px) {
  .contact-cnt .contact-form dl dd .radio-area label input {
    margin: 0 5px 0 0;
  }
}

.contact-cnt .contact-form dl dd a {
  color: #BF0000;
  text-decoration: underline;
  display: inline-block;
  padding-left: 5px;
}

.contact-cnt .contact-form dl dd a i {
  margin: 0 5px;
}

.contact-cnt .contact-btn {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px 0 0;
  justify-content: space-between;
  gap: 15px 0;
}

@media (max-width: 750px) {
  .contact-cnt .contact-btn {
    margin: 30px 0 0;
  }
}

.contact-cnt .contact-btn.pt02 {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-cnt .contact-btn>* {
  width: calc(50% - 30px);
}

@media (max-width: 750px) {
  .contact-cnt .contact-btn>* {
    width: 100%;
  }
}

.contact-cnt .contact-btn button,
.contact-cnt .contact-btn a {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  height: 76px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #009714;
  position: relative;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto;
  color: #fff;
}

@media (max-width: 750px) {

  .contact-cnt .contact-btn button,
  .contact-cnt .contact-btn .back-btn,
  .contact-cnt .contact-btn a {
    font-size: 1.6rem;
    height: 50px;
  }
}

.contact-cnt .contact-btn button i img,
.contact-cnt .contact-btn .back-btn i img,
.contact-cnt .contact-btn a i img {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 750px) {

  .contact-cnt .contact-btn button i img,
  .contact-cnt .contact-btn .back-btn i img,
  .contact-cnt .contact-btn a i img {
    right: 15px;
    width: 8px;
  }
}

.contact-cnt .contact-btn button.send-btn,
.contact-cnt .contact-btn a.send-btn {
  background: #666666;
}

.contact-cnt .contact-btn .back-btn i img,
.contact-cnt .contact-btn a i img {
  right: inherit;
  left: 30px;
}

@media (max-width: 750px) {

  .contact-cnt .contact-btn .back-btn i img,
  .contact-cnt .contact-btn a i img {
    left: 15px;
    width: 8px;
  }
}

.contact-cnt .contact-ex-tTle {
  text-align: center;
  font-size: 2.4rem;
  margin: 60px 0 0;
}

@media (max-width: 750px) {
  .contact-cnt .contact-ex-tTle {
    font-size: 1.8rem;
    margin: 30px 0 0;
  }
}

.contact-cnt .contact-ex-text02 {
  text-align: center;
  margin: 60px 0 0;
}

.contact-cnt .contact-ex-text02 {
  margin: 30px 0 0;
}

.photo-col {
  margin-top: 10px;
}

.contact-cnt .button003 {
  background-color: #666666 !important;
}

/* ----- contact end----- */

.price_table {
  margin-bottom: 40px;
}

@media (max-width: 750px) {
  .price_table {
    overflow: scroll;
  }
}

.price_table table {
  position: relative;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-collapse: collapse;
  font-size: 12px;
}

.price_table_1 th {
  background-color: #CD692D;
}

.price_table th {
  color: #fff;
  text-align: center;
}

.price_table th,
.price_table td {
  border: 1px solid #ccc;
  padding: 0.8em;
  vertical-align: top;
}

.price_table_ttl,
.price_total {
  background-color: #F2E4CD;
}

.price_table_ttl {
  color: #272017;
  font-weight: bold;
}

.sealing_list dd {
  text-align: center;
  font-weight: bold;
  color: #5b4a33;
}

dl.sealing_list {
  max-width: 380px;
}

.sealing_list dd.comp {
  color: #d06a16;
}

.simulation_box {
  width: 100%;
  background: #fdfcfa;
  border: solid 1px #b6a796;
  display: flex;
  justify-content: space-between;
}

.simulation_box h3 {
  padding: 5px 10px;
  background: #d87c15;
  color: #fff;
  font-weight: bold;
  font-size: 1.17em;
}

.simulation_box p {
  padding: 5px 10px;
}

.youtube_wrap iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}


.sil_table_wrap table {
  background-color: #FFF;
  border: 1px solid #c0b9b1 !important;
  text-align: left;
  font-size: 11px;
  border-collapse: collapse !important;
  width: 770px;
}

.sil_table_wrap table th {
  background-color: #7ab131;
  border: 1px solid #c0b9b1 !important;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: .5em;
}

.sil_table_wrap table td {
  padding: .5em;
  border: 1px solid #c0b9b1 !important;
}

.sil_table_wrap table td.subhead {
  font-weight: bold;
}

.sil_table_wrap table td.bg {
  background-color: #f2e3ce;
}

@media screen and (max-width: 768px) {
  .sil_table_outer {
    overflow: hidden;
  }

  .sil_table_wrap {
    width: 100%;
    overflow: scroll;
  }

  .scroll-box {
    overflow-x: auto;
  }

  .scroll-box::-webkit-scrollbar {
    height: 5px;
  }

  .scroll-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }

  .scroll-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
  }
}

.silicon_example {
  padding-left: 40px;
}

.silicon_example img {
  float: left;
}

@media screen and (max-width: 768px) {
  .silicon_example {
    padding-left: 0;
  }

  .silicon_example img {
    float: none;
  }

  .silicon_example .arrow {
    transform: rotate(90deg);
    width: auto;
    margin: -5% auto;
    height: 20%;
  }
}

.price_tx_b {
  font-weight: bold;
  font-size: 1.2em;
}

.tx_red {
  color: #cc0000;
}

.bt_wrap3 a {
  display: inline-block;
  padding: 0.5em 0;
  width: 210px;
  text-align: center;
  color: #fff;
  background: #8E9783;
  text-decoration: none;
  white-space: nowrap;
}

.bt_wrap3 a:last-child {
  background: #7AB130;
}

.types_head h3 {
  background-color: #ef7917;
  border: 1px solid #8b735f;
  color: #FFF;
  display: inline-block;
  padding: .2em 0;
  font-weight: bold;
  text-indent: 10px;
  width: 30%;
}

.types_head span {
  background-color: #aca096;
  border: 1px solid #8b735f;
  border-left: none;
  color: #FFF;
  display: inline-block;
  font-weight: bold;
  padding: .2em 0;
  text-indent: 10px;
  width: 70%;
}

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

  .types_head span {
    border: 1px solid #8b735f;
    border-top: none;
    width: 100%;
  }
}

.type_under {
  display: flex;
  justify-content: space-between;
}

.type_under .left {
  width: 30%;
  max-width: 245px;
}

.type_under .right {
  width: 70%;
  max-width: 505px;
}

.bt_right {
  text-align: right;
}

.bt_right a {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .type_under {
    flex-direction: column;
  }

  .type_under .left,
  .type_under .right {
    width: 100%;
  }

  .type_under .left {
    margin: 0 auto;
  }

  .type_under .right {
    margin-top: 20px;
  }
}

.diyreadbox {
  display: flex;
  margin-top: 25px;
  text-align: center;
  letter-spacing: -0.4em;
  justify-content: center;
  align-items: center;
}

.diyreadbox li {
  margin-left: 25px;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}

.diyreadbox li:first-child {
  margin-left: 0;
}



.diyFlow .clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  clear: both;
  height: 0;
}


.diyFlow {
  margin-top: 45px;
}

.diyFlow h2 {
  line-height: 0
}

.diyFlow .readTxt {
  margin: 18px 0 0 0;
  font-size: 93%;
  line-height: 160%;
}

.diyFlow ul {
  margin-top: 25px;
}

.diyFlow li {
  margin: 5px 0 0 0;
  border: solid 1px #705238;
  background: #fff;
}

.diyFlow li:first-child {
  margin: 0 0 0 0;
}

.diyFlow li .Img {
  float: left;
  line-height: 0;
  width: 175px;
}

.diyFlow li .step {
  padding: 20px 20px 0px 20px;
  float: left;
  width: 553px;
}

.diyFlow li .step h3 {
  line-height: 0;
}

.diyFlow li .step p {
  margin: 20px 0 0 0;
  color: #5d3b20;
  font-size: 93%;
  line-height: 160%;
}

.diyFlow li .step p span {
  color: #cc0000;
  font-weight: bold;
}

.diyFlow li.arrow {
  margin: 0 0 0 0;
  text-align: center;
  display: block;
  border: none;
  background: none;
  line-height: 0;
}

.diyFlow li.arrow img {
  display: inline;
  max-width: 56px;
}

.diyFlow li .step h3 img {
  max-width: 124px;
}


@media screen and (max-width: 768px) {
  .diyFlow {
    margin-top: 30px;
  }

  .diyFlow h2 {
    line-height: 0
  }

  .diyFlow .readTxt {
    margin: 18px 0 0 0;
    font-size: 93%;
    line-height: 160%;
  }

  .diyFlow ul {
    margin-top: 25px;
  }

  .diyFlow li {
    margin: 10px 0 0 0;
    border: solid 1px #705238;
    background: #fff;
  }

  .diyFlow li:first-child {
    margin: 0 0 0 0;
  }

  .diyFlow li .Img {
    float: none;
    line-height: 0;
    width: 100%;
  }

  .diyFlow li .step {
    padding: 15px;
    float: none;
    width: auto;
  }

  .diyFlow li .step h3 {
    line-height: 0;
  }

  .diyFlow li .step h3 img {
    width: auto;
  }

  .diyFlow li .step p {
    margin: 10px 0 0 0;
    color: #5d3b20;
    font-size: 80%;
    line-height: 160%;
  }

  .diyFlow li .step p span {
    color: #cc0000;
    font-weight: bold;
  }

  .diyFlow li.arrow {
    margin: 0 auto;
    width: 20%;
    text-align: center;
    display: block;
    border: none;
    background: none;
    line-height: 0;
  }

  .diyFlow li.arrow img {
    display: inline;
  }
}

.diyplan {
  margin-top: 35px;
}

.diyplan dl {
  display: flex;
}

.diyplan dt {
  padding: 10px 10px 10px 15px;
  background: #f2cbab;
  border-top: 1px solid #8b735f;
  border-left: 1px solid #8b735f;
  width: 30%;
}

.diyplan dd {
  padding: 10px 10px 10px 15px;
  border-top: 1px solid #8b735f;
  border-left: 1px solid #8b735f;
  border-right: 1px solid #8b735f;
  width: 70%;
}

.diyplan .head01 {
  padding: 15px 10px 15px 15px;
  background: #ef7917;
  font-weight: bold;
  color: #fff;
}

.diyplan .head02 {
  padding: 15px 10px 15px 15px;
  background: #aca096;
  color: #fff;
  font-weight: bold;
}

.diyplan .last_dl {
  border-bottom: 1px solid #8b735f;
}

.diychigai ul {
  margin: 30px 0 0 0;
  text-align: center;
  letter-spacing: -0.4em;
}

.diychigai li {
  margin: 0 0 0 80px;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}

.diychigai li:first-child {
  margin: 0 0 0 0px;
}

.tx_or {
  color: #d87c15;
  font-weight: bold;
}

.tx_gr {
  color: #62a20d;
  font-weight: bold;
}

.num_wrap {
  max-width: 125px;
  max-height: 25px;
}

.diy_tx {
  padding: 15px;
  text-align: left;
  font-size: 93%;
}

.diy_col_under {
  border: solid 1px #b4a18f;
}

.diy_jitu {
  justify-content: flex-start;
}

.diy_col {
  max-width: 246px;
}

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

.summary_table {
  border: 1px solid #8b735f;
  border-collapse: collapse;
  margin: 0 auto;
}

.summary_table_l {
  background-color: #ef7917;
  border-bottom: 1px solid #8b735f;
  border-right: 1px solid #8b735f;
  color: #ffffff;
  padding: 1% 0 1% 1%;
  vertical-align: top;
  width: 13%;
  font-weight: bold;
}

.summary_table_r {
  border-bottom: 1px solid #8b735f;
  color: #000000;
  padding: 1%;
  vertical-align: top;
  width: 85%;
  background-color: #ffffff;
}

.company_img img {
  object-fit: contain
}

.access_table {
  border: 1px solid #8b735f;
  border-collapse: collapse;
  margin: 1% auto 5%;
  width: 100%;
}

.access_table_l {
  background-color: #ef7917;
  border-bottom: 1px solid #8b735f;
  border-right: 1px solid #8b735f;
  color: #ffffff;
  padding: 1% 0 1% 1%;
  vertical-align: top;
  width: 13%;
  font-weight: bold;
}

.access_table_r {
  border-bottom: 1px solid #8b735f;
  color: #000000;
  padding: 1%;
  vertical-align: top;
  width: 85%;
  background-color: #ffffff;
}

.tx_left {
  text-align: left;
}

.interview_col img {
  object-fit: contain
}

.hr3 {
  border: 0;
  border-bottom: 1px dashed #ccc;
  background: #999;
  margin: 20px 0;
}


.rev_col2 {
  flex-direction: row-reverse;
}

.under_2col02 {
  display: flex;
  justify-content: space-between;
}

.under_2col02 .left {
  width: 68%;
}

.under_2col02 .right {
  width: 30%;
}

@media (max-width: 768px) {
  .under_2col02 {
    flex-direction: column;
  }

  .under_2col02 .left {
    width: 100%;
  }

  .under_2col02 .right {
    align-items: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .less_co {
    flex-direction: column;
  }
}

.ind_ul {
  width: 70%;
  margin: 0 auto;
}

.ind_ul .arrow2 {
  margin: 20px auto;
  text-align: center;
  object-fit: contain;
  max-width: 100px;
}

.title_05 {
  font-size: 140%;
  font-weight: bold;
}

.ind_ul li div img {
  width: 30%;
}

.ind_ul li div h3 {
  display: flex;
  align-items: center;
  margin-left: 15px;
  width: 70%;
}

@media (max-width: 768px) {
  .ind_ul {
    width: 100%;
  }
}

.style_s_ttl {
  font-size: 110%;
  color: #eb8c05;
  font-weight: bold;
}

.tx_name {
  font-size: 1.6rem;
}

.backtolist {
  display: block;
  margin: 20px auto;
  background: #555555;
  text-align: center;
  padding: 10px 20px;
  max-width: 230px;
  border-radius: 3px;
  color: white;
  display: block;
}

.backtolist:hover {
  background-color: #999999;
}

.backtolist {
  color: white;
  text-decoration: none;
  display: block;
}

.news_box {
  border: 1px solid #ccc;
  background-color: white;
  padding: 10px;
}

.voice-archive_wrap {
  padding: 3% 0;
  display: flex;
  border-bottom: solid 1px #c4b4a2;
  justify-content: space-between;
}

.voice-archive_wrap .voice-pict {
  width: 20%;
}

.voice-archive_wrap .voice-content {
  width: 80%;
}

.voice-archive_wrap .voice-ar-thum {
  max-width: 93px;
}

.voice-archive_wrap .voice-title {
  font-size: 120%;
  color: darkorange;
  font-weight: bold;
}

.voice-content .voice-ar-link {
  text-align: right;
}

.voice-content .voice-ar-link a {
  display: block;
  max-width: 150px;
  margin-left: auto;
}

.voice-content .voice-text p {
  font-size: 1.6rem;
}

.single_vioce_title01 {
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
  color: #5b3e20;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.text_box001 {
  font-size: 1.6rem;
  border: 1px solid #ccc;
  background-color: white;
  padding: 1em;
  margin-bottom: 30px;
}

.ttl06 {
  font-size: 130%;
  background-color: #a78b2b;
  padding: 5px 0 0 10px;
  color: white;
}

.single_work_wrap {
  display: flex;
  justify-content: space-between;
}

.work_single_before,
.work_single_after {
  position: relative;
  width: calc(50% - 30px);
}

.work_single_before:before {
  content: "Before";
  display: block;
  background-color: #e3deca;
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px 0;
}

.work_single_after:before {
  content: "After";
  display: block;
  padding: 10px 0;
  border: 1px solid #ccc;
  text-align: center;
  background-color: #e4be7a;
}

.work_single_after:after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  width: 13px;
  height: 13px;
  border-top: 3px solid #6a513d;
  border-right: 3px solid #6a513d;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .single_work_wrap {
    flex-direction: column;
  }

  .work_single_before,
  .work_single_after {
    width: 100%;
  }

  .work_single_after {
    margin-top: 30px;
  }

  .work_single_after:after {
    content: "";
    margin: auto;
    position: absolute;
    top: -104%;
    left: 50%;
    bottom: 0;
    width: 13px;
    height: 13px;
    border-top: 3px solid #6a513d;
    border-right: 3px solid #6a513d;
    transform: rotate(135deg);
  }
}

.work_ar_title {
  background-color: #a78b2b;
  padding: 5px 0 0 10px;
  color: white !important;
  font-weight: normal !important;
  font-size: 120%;
}

.work_ar_title2 {
  font-size: 130%;
}

.work_ar_title2 a {
  margin-left: auto;
  max-width: 112px;
  display: block;
  background-color: #333333;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .work_ar_title2 {
    font-size: 100%;
    padding-left: 5px;
  }
}


.sitemap_wrap {
  display: flex;
}

.sitemapbox {
  width: 30%;
  margin-left: 1%;
  margin-right: 1%;
  min-height: 600px;
}

.sitemapbox li {
  list-style-type: none;
}

.sitemapbox li a {
  text-decoration: none;
  color: #555555;
}

.sitemaps {
  margin-bottom: 30px;
}

.sitemap1:before {
  content: "> ";
}

.sitemap1 {
  color: black;
  line-height: 1.5;
}

.sitemap0 a,
.sitemap0 {
  color: #e96719 !important;
  font-weight: bold !important;
  border-bottom: 2px solid #e96719;
  padding: 3px;
  margin-bottom: 3px;
  backgrround-color: #e96719;
  font-size: 110%;
}

.mitsumorikaisetsu {
  margin-top: 35px;
}

.mitsumorikaisetsu h2 {
  line-height: 0
}

.mitsumorikaisetsu table {
  margin: 20px 0 0 0;
  border-right: 1px solid #8b735f;
  border-bottom: 1px solid #8b735f;
  border-spacing: 0;
}

.mitsumorikaisetsu th {
  padding: 10px 10px 10px 15px;
  width: 85px;
  font-size: 93%;
  font-weight: normal;
  color: #fff;
  background: #ef7917;
  border-top: 1px solid #8b735f;
  border-left: 1px solid #8b735f;
  text-align: left;
  vertical-align: top;
}

.mitsumorikaisetsu td {
  padding: 10px 10px 10px 15px;
  background: #fff;
  font-size: 93%;
  border-top: 1px solid #8b735f;
  border-left: 1px solid #8b735f;
}

.mitsumorichui .chuiBox {
  margin: 20px 0 0 0;
  padding: 10px;
  border: solid 1px #e7ded2;
  background: url(img/mitsumori_chui_bg.png) repeat top left;
}

.mitsumorichui .inner {
  padding: 20px;
  background: #fff;
}

.mitsumorichui .inner h3 {
  line-height: 0;
}

.mitsumorichui .inner h4 {
  margin-top: 25px;
  font-size: 120%;
  font-weight: bold;
  color: #06728e;
  line-height: 1.2;
}

.mitsumorichui .inner h4.fst {
  margin-top: 20px;
}

.mitsumorichui .inner p {
  margin: 5px 0 0 0;
  font-size: 98%;
  line-height: 140%;
}

.mitsumorichui .inner span {
  font-size: 100%;
  font-weight: bold;
  color: #cc0000;
}

.mitsumorichui .chuifollow {
  margin-top: 25px !important;
  line-height: 0;
}

.faq_col li {
  position: relative;
}

.faq_col .text_q {
  color: #ef7917;
  font-size: 1.17em;
  font-weight: bold;
  display: flex;
}

.faq_col .text_a {
  display: flex;
  position: relative;
}

.faq_col .text_q:before {
  content: '';
  margin-right: 10px;
  width: 35px;
  height: 29px;
  display: inline-block;
  background-image: url("../img/qa_q.png");
  background-repeat: no-repeat;
}

.faq_col .text_a:before {
  position: absolute;
  content: '';
  width: 29px;
  height: 29px;
  display: inline-block;
  background-image: url("../img/qa_a.png");
  background-repeat: no-repeat;
}

.faq_col .text_a p {
  margin-left: 40px;
}


/* .faq_col .text_q:before{
  content: url("../img/qa_q.png");
　margin-right: 10px;
}

.faq_col .text_a:before{
  content: url("../img/qa_a.png");
　margin-right: 10px;
} */


/* revision add class blog section */




.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #66aa55;
  align-items: center;
}

.page-numbers {
  padding: 0px 7px;
  border-radius: 999999px;
  color: #66aa55 !important;
}

.current {
  padding: 0px 7px;
  border-radius: 999999px;
  border: 1px solid #66aa55;
}





.grid-v1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 3% 0;
}

.grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 3% 0 0;
}


.single_img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}




.blog-img2 img {
  width: 100%;
  height: 300px;
}


.blog-img img {
  width: 100%;
  height: calc(50vh - 100px);
}

.wt--rv {
  background-color: transparent !important;
  color: #333333 !important;
  padding-left: 0;
}

.flex-contain {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.txt-limit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width:768px) {


  .blog-img img {
    width: 100%;
    height: calc(50vh - 150px);
  }

}



@media (max-width:580px) {

  .grid-v2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 3% 0;
  }

  .blog-img img {
    width: 100%;
    height: calc(50vh - 100px);
    object-fit: cover;
  }

  .blog-img2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .single_img img {
    width: 100%;
    height: 350px;
  }

}


@media (max-width:480px) {

  .grid-v1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 3% 0;
  }


  .blog-img2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .single_img img {
    width: 100%;
    height: 250px;
  }
}