@charset "UTF-8";
/****************************************

メディアクエリ/レスポンシブ用mixin

*****************************************/
/****************************************

企業情報

*****************************************/
.greeting_box {
  width: 100%;
  padding: 60px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .greeting_box {
    padding: 30px 10px;
  }
}
.greeting_box .name {
  margin-top: 35px;
  text-align: right;
  font-family: serif;
  font-size: 1.8rem;
}
.greeting_box .name span {
  font-size: 2.6rem;
}

.table {
  width: 100%;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table {
    width: 100%;
  }
}
.table th,
.table td {
  text-align: left;
  padding: 28px;
}
@media screen and (max-width: 767px) {
  .table th,
  .table td {
    padding: 12px;
  }
}
.table th {
  width: 30%;
  border-bottom: 1px solid #ccc;
  background: #F4F1EC;
}
@media screen and (max-width: 767px) {
  .table th {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
.table td {
  width: 70%;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table td {
    display: block;
    width: 100%;
  }
}

.table02_wrap {
  background: #fff;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .table02_wrap {
    padding: 30px 10px;
  }
}
.table02_wrap .table02 {
  width: 100%;
}
.table02_wrap .table02 th,
.table02_wrap .table02 td {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table02_wrap .table02 th,
  .table02_wrap .table02 td {
    padding: 12px;
  }
}
.table02_wrap .table02 th {
  width: 16%;
  position: relative;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .table02_wrap .table02 th {
    border-right: 1px solid #ccc;
  }
}
@media screen and (max-width: 767px) {
  .table02_wrap .table02 th {
    display: block;
    width: 100%;
    border-left: 1px solid #ccc;
    padding: 10px 0 5px 20px;
  }
}
.table02_wrap .table02 th::before {
  content: "";
  background: #C7B79E;
  width: 9px;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .table02_wrap .table02 th::before {
    top: 19px;
    right: -5px;
  }
}
@media screen and (max-width: 767px) {
  .table02_wrap .table02 th::before {
    top: 18px;
    left: -5px;
  }
}
.table02_wrap .table02 td {
  width: 84%;
  padding: 10px 0 10px 50px;
}
@media screen and (max-width: 767px) {
  .table02_wrap .table02 td {
    display: block;
    width: 100%;
    border-left: 1px solid #ccc;
    padding: 0 0 10px 20px;
  }
}

/****************************************

お知らせ・ブログ

*****************************************/
.blog_post {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog_post {
    margin-bottom: 40px;
  }
}
.blog_post article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  transition: 0.3s;
}
.blog_post article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  content: "";
}
.blog_post article:hover {
  background: #eee;
}
.blog_post article a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}
.blog_post article figure {
  width: 133px;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog_post article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.blog_post article .blog_post_inner {
  width: calc(100% - 133px);
  padding: 15px 30px;
}
@media screen and (max-width: 767px) {
  .blog_post article .blog_post_inner {
    width: calc(100% - 133px);
    padding: 10px 30px 10px 10px;
  }
}
.blog_post article .blog_post_inner .date {
  display: inline-block;
  color: #999;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .blog_post article .blog_post_inner .date {
    font-size: 1.2rem;
  }
}
.blog_post article .blog_post_inner h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blog_post article .blog_post_inner h2 {
    font-size: 1.4rem;
  }
}

/****************************************

採用情報

*****************************************/
.table03_wrap {
  background: #fff;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .table03_wrap {
    padding: 30px 10px;
  }
}
.table03_wrap:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .table03_wrap:not(:last-child) {
    margin-bottom: 30px;
  }
}
.table03_wrap .table03 {
  width: 100%;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table03_wrap .table03 {
    width: 100%;
  }
}
.table03_wrap .table03 th,
.table03_wrap .table03 td {
  text-align: left;
  padding: 28px;
}
@media screen and (max-width: 767px) {
  .table03_wrap .table03 th,
  .table03_wrap .table03 td {
    padding: 12px;
  }
}
.table03_wrap .table03 th {
  width: 20%;
  border-bottom: 1px solid #ccc;
  background: #EEEEEE;
}
@media screen and (max-width: 767px) {
  .table03_wrap .table03 th {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
.table03_wrap .table03 td {
  width: 80%;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table03_wrap .table03 td {
    display: block;
    width: 100%;
  }
}

.recruit_btn-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .recruit_btn-wrap {
    gap: 10px;
  }
}
.recruit_btn-wrap .recruit_btn {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .recruit_btn-wrap .recruit_btn {
    width: 100%;
  }
}
.recruit_btn-wrap .recruit_btn a {
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #000;
  text-align: center;
  z-index: 0;
  background: #fff;
  display: flex;
  align-items: center;
  align-items: left;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit_btn-wrap .recruit_btn a {
    font-size: 1.5rem;
    padding: 6px;
  }
}
.recruit_btn-wrap .recruit_btn a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
  content: "";
  transition: 0.3s;
}
.recruit_btn-wrap .recruit_btn a:hover {
  background: #eee;
}
.recruit_btn-wrap .recruit_btn a img {
  margin-right: 20px;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .recruit_btn-wrap .recruit_btn a img {
    width: 80px;
  }
}

.recruit_list {
  border: 10px solid #eee;
  box-sizing: border-box;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .recruit_list {
    border: 6px solid #eee;
    padding: 20px;
  }
}
.recruit_list:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .recruit_list:not(:last-child) {
    margin-bottom: 30px;
  }
}
.recruit_list li {
  padding: 15px 0 15px 30px;
  position: relative;
  border-bottom: 1px dashed #999;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .recruit_list li {
    padding: 15px 0 15px 25px;
  }
}
.recruit_list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(images/check.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .recruit_list li::before {
    width: 16px;
    top: 16px;
  }
}
.recruit_list li span {
  font-size: 1.4rem;
  color: #666;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.recruit_box04 {
  background-color: #F4F1EC;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .recruit_box04 {
    padding: 50px 0;
  }
}

/****************************************

取り扱い店舗・業者

*****************************************/
.table04 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table04 {
    width: 100%;
  }
}
.table04 th,
.table04 td {
  text-align: left;
  padding: 28px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table04 th,
  .table04 td {
    padding: 12px;
  }
}
.table04 th {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .table04 th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 15px 0 5px 0;
  }
}
.table04 td {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .table04 td {
    display: block;
    width: 100%;
    padding: 0 0 15px 0;
  }
}

.shoplist_box {
  border: 10px solid #eee;
  box-sizing: border-box;
  padding: 50px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .shoplist_box {
    border: 6px solid #eee;
    padding: 20px;
  }
}
.shoplist_box:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .shoplist_box:not(:last-child) {
    margin-bottom: 30px;
  }
}
.shoplist_box .shoplist_inner {
  width: 710px;
}
@media screen and (max-width: 767px) {
  .shoplist_box .shoplist_inner {
    width: 100%;
  }
}
.shoplist_box .shoplist_inner h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .shoplist_box figure {
    margin-top: 20px;
  }
}

/****************************************

東京ショールルーム

*****************************************/
.showroom_map {
  position: relative;
  width: 100%;
  height: 500px;
}
@media screen and (min-width: 768px) {
  .showroom_map {
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .showroom_map {
    height: auto;
    aspect-ratio: 4/3;
    margin-top: 30px;
  }
}
.showroom_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/****************************************

施工事例

*****************************************/
.case_post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
}
@media screen and (max-width: 767px) {
  .case_post {
    gap: 20px 2%;
  }
}
.case_post article {
  width: 285px;
}
@media screen and (max-width: 767px) {
  .case_post article {
    width: 49%;
  }
}
.case_post article figure {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #000;
  transition: 0.3s;
}
.case_post article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case_post article h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .case_post article h2 {
    font-size: 1.5rem;
    margin-top: 15px;
  }
}
.case_post article h2 a {
  text-decoration: none;
  color: #000;
}
.case_post article h2 a:hover {
  color: #666;
}
.case_post article .date {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .case_post article .date {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}
.case_post article a {
  width: 100%;
}
.case_post article a:hover figure {
  opacity: 0.75;
}

/****************************************

共通

*****************************************/
.ttl13 {
  width: 100%;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .ttl13 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}

.ttl14 {
  font-size: 3rem;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  background: #C0AF97;
  color: #fff;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .ttl14 {
    font-size: 2.5rem;
    margin-bottom: 60px;
  }
}
.ttl14::before {
  content: "";
  background: #C0AF97;
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 25px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

@media screen and (min-width: 768px) {
  .w520 {
    width: 520px;
  }
}

/****************************************

SPナビ

*****************************************/
@media screen and (max-width: 767px) {
  #sp_navi {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    transform: translateY(-100%);
    transition: 0.7s ease-in-out;
  }
  .open_navi #sp_navi {
    transform: translateY(0);
    transition: 0.7s ease-in-out;
  }
  .open_navi #wrapper {
    transform-origin: left center;
    filter: blur(3px);
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu {
    padding: 50px 6%;
    text-align: left;
  }
  #sp_navi .menu a {
    font-family: "Arsenal", "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", "Yu Gothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: left;
    border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
    border-top: none;
    cursor: pointer;
    color: #000;
    margin-bottom: 5px;
    font-size: 2.4rem;
    box-sizing: border-box;
  }
  #sp_navi .menu .menu-item span {
    display: block;
    font-size: 1.2rem;
    padding: 5px 0;
    color: #aaa;
  }
  #sp_navi .menu .menu-item-home {
    border-top: none;
  }
  #sp_navi .menu-item a,
  #sp_navi .menu-item span {
    display: block;
    padding: 15px 0;
    color: #fff;
  }
  #sp_navi .menu-item a:link,
  #sp_navi .menu-item a:visited,
  #sp_navi .menu-item a:hover,
  #sp_navi .menu-item a:active {
    color: #fff;
    text-decoration: none;
  }
  /* ナビのホバー時 */
  #sp_navi .menu-item a:hover,
  #sp_navi .menu-item a:active {
    color: #fff;
    background: none;
  }
  #sp_navi .sub-menu {
    width: 100%;
    text-align: left;
    display: none;
  }
  #sp_navi .sub-menu li {
    width: 100%;
    text-align: left;
    border-bottom: none !important;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-size: 1.4rem;
    position: relative;
    background: rgba(255, 255, 255, 0.15) !important;
    font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", "Yu Gothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  }
  #sp_navi .sub-menu li a:link,
  #sp_navi .sub-menu li a:visited,
  #sp_navi .sub-menu li a:hover,
  #sp_navi .sub-menu li a:active {
    color: #fff;
    text-decoration: none;
  }
  /* ナビ下層のホバー時 */
  #sp_navi .sub-menu li a:hover,
  #sp_navi .sub-menu li a:active {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15) !important;
  }
  /*  孫ページナビ*/
  #sp_navi .subsub-menu {
    margin-bottom: 0 !important;
  }
  #sp_navi .subsub-menu a {
    display: block;
    padding: 10px 10px 10px 40px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    position: relative;
    font-size: 1.4rem;
  }
  #sp_navi .subsub-menu a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
    width: 10px;
    height: 1px;
    background: #aaa;
  }
  .subsub-menu a:link,
  .subsub-menu a:visited,
  .subsub-menu a:hover,
  .subsub-menu a:active {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15) !important;
  }
  /* 孫ページナビ下層のホバー時 */
  #sp_navi .subsub-menu a:hover,
  #sp_navi .subsub-menu a:active {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15) !important;
  }
  /*  ひ孫ページナビ*/
  #sp_navi .subsubsub-menu {
    margin-bottom: 0 !important;
  }
  #sp_navi .subsubsub-menu a {
    display: block;
    padding: 6px 10px 6px 40px !important;
    background: none !important;
    font-size: 1.3rem !important;
  }
  #sp_navi .subsubsub-menu a::before {
    content: none;
  }
  .subsubsub-menu a:link,
  .subsubsub-menu a:visited,
  .subsubsub-menu a:hover,
  .subsubsub-menu a:active {
    color: #fff;
    text-decoration: none;
    background: #111;
  }
  /* ひ孫ページナビ下層のホバー時 */
  #sp_navi .subsub-menu a:hover,
  #sp_navi .subsub-menu a:active {
    color: #fff;
    text-decoration: none;
    background: none !important;
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(135deg);
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 11px;
    right: 20px;
    z-index: 200;
  }
  #sp_navi .menu-item-has-children.menu_open::before {
    transform: rotate(-45deg);
    transition: 0.2s ease-in-out;
    top: 22px;
  }
  .nav_logo {
    width: 150px;
    margin: 20px 6% 0;
  }
  .sp_navi_info {
    padding: 0 6% 50px;
  }
  .sp_navi_info p {
    color: #aaa;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .nav_add {
    margin-bottom: 20px;
  }
  .nav_sns {
    display: flex;
    gap: 20px;
  }
}