@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-weight: 500 !important;
  font-style: normal;
  box-sizing: border-box;
}

body {
  background-color: #FEFDF7;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif !important;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

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

/*アイコン表示用 */
/* v6 Web Font 用の指定。グローバルfont-familyの上書きを無効化 */
.fa, .fa-solid, .fa-regular {
  font-family: "Font Awesome 7 Free" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-brands {
  font-family: "Font Awesome 7 Brands" !important;
}

.fa-solid {
  font-weight: 900 !important;
} /* Solid */
.fa-regular {
  font-weight: 400 !important;
} /* Regular */
/*パーツ*/
.center_wrap {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .center_wrap {
    width: 90%;
  }
}

.red_button {
  border: 2px solid #151515;
  border-right: none;
  padding: 20px;
  width: 70%;
  position: absolute;
  right: 0;
  font-size: 24px;
  padding-left: 50px;
  color: #151515;
}
@media screen and (max-width: 768px) {
  .red_button {
    width: 85%;
    font-size: 17px;
    padding: 15px;
  }
}
.red_button a {
  display: block;
}

.black_button {
  border: 2px solid #000000;
  border-left: none;
  padding: 20px;
  width: 70%;
  position: absolute;
  left: 0;
  font-size: 24px;
  padding-right: 50px;
  color: #000000;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .black_button {
    width: 85%;
    font-size: 17px;
    padding: 15px;
  }
}
.black_button a {
  display: block;
}

.title {
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 60px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 35px;
  }
}
.title span {
  font-size: 20px;
  font-family: zen-old-mincho, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.01em;
}

/*各部分*/
/*ヘッダー*/
header,
header * {
  -webkit-font-smoothing: auto !important;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 9000;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.5) 0%, rgba(15, 15, 15, 0) 100%);
}
header .wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 140px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  header {
    padding: 0px;
    top: 0;
  }
  header .wrap {
    height: 104px;
    padding: 0 20px;
  }
}
header .rogo {
  display: flex;
  align-items: center;
  gap: 28px;
}
header .rogo a {
  display: block;
  width: 81px;
}
header .rogo img {
  width: 100%;
  display: block;
}
header .rogo .tagline {
  width: 197px;
}
@media screen and (max-width: 1400px) {
  header .rogo .tagline {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .rogo {
    width: 65%;
    gap: 14px;
    position: relative;
    z-index: 4;
  }
  header .rogo a {
    width: 56px;
  }
  header .rogo .tagline {
    display: none;
  }
}
header .navi {
  align-self: stretch;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  header .navi {
    display: none;
  }
}
header .navi .navi__main__ul {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 32px;
}
header .navi .navi__main__li {
  position: relative;
  display: flex;
  align-items: center;
}
header .navi .navi__main__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-weight: 700 !important;
  font-size: 14px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
header .navi .navi__main__label--plain {
  font-size: 16px;
}
header .navi .navi__main__label .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.2s ease;
}
header .navi .navi__main__li:hover .navi__main__label,
header .navi .navi__main__li:focus-within .navi__main__label {
  opacity: 0.7;
}
header .navi .navi__main__li:hover .navi__main__label .fa-chevron-down,
header .navi .navi__main__li:focus-within .navi__main__label .fa-chevron-down {
  transform: rotate(180deg);
}
header .navi {
  /* メガメニュー */
}
header .navi .mega_navi {
  position: fixed;
  top: 140px;
  left: 0;
  width: 100%;
  padding: 0 40px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s linear, pointer-events 0.2s linear;
  transition-delay: 0.15s;
}
header .navi .navi__main__li.has_mega.is-mega-active .mega_navi,
header .navi .navi__main__li.has_mega:focus-within .mega_navi,
header:not(.js-mega-nav) .navi .navi__main__li.has_mega:hover .mega_navi {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}
header .navi .mega_navi__inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
  width: 100%;
  padding: 48px 200px;
  padding-right: 70px;
  background-color: #2b2b2b;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
header .navi .mega_navi__head {
  display: flex;
  flex-direction: row;
  align-items: center;  
  gap: 8px;
  flex-shrink: 0;
  color: #ffffff;
  font-weight: 900 !important;
  font-size: 22px;
  white-space: nowrap;
  min-width: 240px;
  width: fit-content;
}
header .navi .mega_navi__head .fa-chevron-down {
  font-size: 8px;
  transform: rotate(-90deg);
  margin-top: 3px;
}
header .navi .mega_navi__divider {
  width: 1px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
}
header .navi .mega_navi__body {
  display: flex;
  align-items: center;
  flex: 1 0 0;
  min-width: 0;
}
header .navi .mega_navi__body--groups {
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
}
header .navi .mega_navi__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
header .navi .mega_navi__group_title {
  color: #ffffff;
  font-size: 18px;
}
header .navi .mega_navi__group_title,
header .navi .mega_navi__group_title * {
  font-weight: 900 !important;
}
header .navi .mega_navi__group_title--link a {
  color: #ffffff;
}
header .navi .mega_navi__group_title--link a .fa-arrow-up-right-from-square {
  font-size: 13px;
  margin-left: 4px;
}
header .navi .mega_navi__list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px 60px;
}
header .navi .mega_navi__list a {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  color: #ffffff;
  font-weight: 700 !important;
  font-size: 16px;
  white-space: nowrap;
}
header .navi .mega_navi__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
header .navi .mega_navi__list a:hover::after {
  transform: scaleX(1);
}
@media screen and (max-width: 1280px) {
  header .navi .navi__main__ul {
    gap: 20px;
  }
  header .navi .mega_navi__inner {
    gap: 40px;
    padding: 36px 60px;
  }
}
header {
  /*Sp menu*/
}
header .sp_navi {
  display: none;
}
@media screen and (max-width: 768px) {
  header .sp_navi {
    display: block;
  }
}
header .sp_navi {
  /* ハンバーガーメニューボタン */
}
header .sp_navi .hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
header .sp_navi .hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  left: 6px;
  background: #ffffff;
  transition: 0.3s ease-in-out;
}
header .sp_navi .hamburger span:nth-child(1) {
  top: 10px;
}
header .sp_navi .hamburger span:nth-child(2) {
  top: 22px;
}
header .sp_navi .hamburger span:nth-child(3) {
  top: 35px;
}
header .sp_navi {
  /* スマホメニューを開いてる時のボタン */
}
header .sp_navi .hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #ffffff;
  transform: rotate(-45deg);
}
header .sp_navi .hamburger.active span:nth-child(2),
header .sp_navi .hamburger.active span:nth-child(3) {
  top: 16px;
  background: #ffffff;
  transform: rotate(45deg);
}
header .sp_navi {
  /* メニュー背景 */
}
header .sp_navi nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #ffffff;
  background-color: #000000;
  text-align: left;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}
header .sp_navi {
  /* クリックでjQueryで追加・削除 */
}
header .sp_navi nav.globalMenuSp.active {
  opacity: 1;
  display: block;
  transform: translateX(0%);
}
header .sp_navi .sp_navi_wrap {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 88px 32px 60px;
  box-sizing: border-box;
}
header .sp_navi .sp_menu_col {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  min-width: 0;
  gap: 36px;
}
header .sp_navi .sp_menu_group__title {
  font-weight: 700 !important;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  white-space: nowrap;
}
header .sp_navi .sp_menu_group__title a {
  color: #ffffff;
}
header .sp_navi .sp_menu_group__sub {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
header .sp_navi .sp_menu_group__subtitle {
  font-weight: 700 !important;
  font-size: 12px;
  line-height: 24px;
  color: #ffffff;
}
header .sp_navi .sp_menu_group__subtitle a {
  color: #ffffff;
}
header .sp_navi .sp_menu_group__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 400 !important;
}
header .sp_navi .sp_menu_group__sub .sp_menu_group__list {
  margin-top: 0;
}
header .sp_navi .sp_menu_group__list a {
  color: #ffffff;
}
header .sp_navi .sp_menu_group__list li::before {
  content: "- ";
}

/*ファーストびゅー*/
.first_view {
  position: relative;
}
.first_view .image {
  background-image: url(../../assets/images/new_top/firstview.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
}
.first_view .image .first_view_box li img {
  height: 94vh;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .first_view .image .first_view_box li img {
    height: 80vh;
  }
}
.first_view .news {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  top: 84vh;
  width: 400px;
  left: 100px;
  padding: 10px;
  font-size: 14px;
  z-index: 999999;
}
@media screen and (max-width: 768px) {
  .first_view .news {
    top: 72vh;
    width: 90%;
    left: 6%;
  }
}
.first_view .news a {
  display: block;
}
.first_view .news .title {
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #A31039;
  font-size: 13px;
}
.first_view .news .event_title {
  display: block;
  color: #252525;
  padding: 0 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .first_view .news .event_title {
    padding: 0px;
    font-size: 13px;
  }
}
.first_view .news .check_link {
  font-size: 13px;
  text-align: right;
  letter-spacing: 0.1em;
}
.first_view .news .check_link a {
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #A31039;
}
.first_view .news {
  position: relative;
  width: 100%;
  background-color: #D3D3D3;
  text-align: center;
  top: 100px;
  left: 0;
  z-index: 1;
}
.first_view .catch {
  position: absolute;
  color: #fff;
  top: 30vh;
  left: 49.5%;
  text-shadow: 0 1px 7px #000;
  font-family: var(--font-family--, "Zen Old Mincho");
  font-size: 32px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  height: 400px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .first_view .catch {
    top: 20vh;
    left: 40%;
  }
  .first_view .news {
    top: 0;
  }
}

.content_bnr .slick-initialized .slick-slide {
  padding: 10px;
}
.content_bnr .slick-initialized .slick-slide img {
  width: 100%;
  object-fit: cover;
}

/*メイン部分*/
main {
  width: 100%;
  position: relative;
}

/*Side bar*/
.sidebar {
  position: fixed;
  right: 0;
  top: 65vh;
  width: 150px;
  height: 600px;
  transform: translateY(-50%);
  z-index: 8000;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar .news_line {
  z-index: 99;
  cursor: pointer;
  position: absolute;
  top: 55px;
  right: -220px;
  background: #D3D3D3;
  color: #000;
  font-size: 15px;
  padding: 10px 20px;
}
.sidebar .news_line span {
  margin-left: 15px;
}
.sidebar .main_sidbnr {
  position: absolute;
  top: 120px;
  right: 0;
  width: 100px;
}
.sidebar .main_sidbnr li {
  border: #D3D3D3 2px solid;
  text-align: center;
  margin-bottom: 15px;
  font-size: 15px;
  background-color: #D3D3D3;
  height: 55px;
}
.sidebar .main_sidbnr li .fa-solid {
  font-size: 35px;
}
.sidebar .main_sidbnr li span {
  position: relative;
  top: -25px;
  line-height: 1.7em;
}
.sidebar .main_sidbnr li a {
  display: block;
  padding: 10px;
  color: #000000;
}
.sidebar .sns_sidbnr {
  width: 50px;
  position: absolute;
  top: 325px;
  right: 0;
}
.sidebar .sns_sidbnr li {
  background-color: #000;
  margin-bottom: 8px;
  text-align: center;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar .sns_sidbnr li .fa-brands {
  font-size: 25px;
}
.sidebar .sns_sidbnr li a {
  color: #ffffff;
}

.sticky {
  position: fixed;
  top: 49vh;
  /* スクロール時のスタイル */
}

/*Second view*/
.second_view {
  position: relative;
}
.second_view .flex {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  .second_view .flex {
    padding-top: 40px;
  }
}
.second_view h2 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 50px;
  letter-spacing: 0em;
  padding-right: 200px;
}
@media screen and (max-width: 768px) {
  .second_view h2 {
    font-size: 28px;
    padding-right: 2%;
  }
}
.second_view .text {
  line-height: 2.5em;
  font-size: 20px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .second_view .text {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.second_view .img__01 {
  background-image: url(../../assets/images/new_top/top_image01.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  position: absolute;
  top: 550px;
  width: 50%;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .second_view .img__01 {
    top: 280px;
    width: 70%;
    height: 80px;
  }
}
.second_view .img__02 {
  background-image: url(../../assets/images/new_top/top_image02.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  position: absolute;
  right: 0;
  width: 45%;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .second_view .img__02 {
    top: 380px;
    width: 60%;
    height: 70px;
  }
}
.second_view .under_image {
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .second_view .under_image {
    padding-top: 210px;
  }
}
.second_view .last {
  text-align: right;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .second_view .last {
    padding-right: 6%;
  }
}
.second_view .three_axes {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .second_view .three_axes {
    width: 90%;
  }
}
.second_view .three_axes {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.second_view .three_axes li {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .second_view .three_axes li {
    width: 30%;
  }
}
.second_view .three_axes li .cmn_btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  border: 1px solid #a40a0a;
  border-radius: 30px;
  transition: 0.3s;
  box-sizing: border-box;
  color: #a40a0a;
  margin: auto;
}
.second_view .three_axes li .cmn_btn a:hover {
  color: #fff;
  background: #a40a0a;
}
@media screen and (max-width: 768px) {
  .second_view .three_axes li .cmn_btn a {
    width: 100px;
    font-size: 14px;
  }
}
.second_view .three_axes span {
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .second_view .three_axes span {
    font-size: 11px;
  }
}
.second_view .three_axes .heikin {
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .second_view .three_axes .heikin {
    font-size: 11px;
    display: inline-block;
  }
}
.second_view .three_axes h3 {
  font-size: 40px;
  padding: 10px 0;
  border-top: #252525 2px solid;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .second_view .three_axes h3 {
    font-size: 25px;
  }
}
.second_view .three_axes .axes_body {
  text-align: center;
  line-height: 2.1em;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: #252525 solid 2px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .second_view .three_axes .axes_body {
    font-size: 16px;
    line-height: 1.9em;
  }
}
.second_view h2 {
  font-size: 28px;
}
.second_view .catch {
  font-size: 20px;
  padding: 20px 0;
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.second_view .text {
  line-height: 2em;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .second_view .text {
    font-size: 15px;
  }
}
.second_view .img_wrap {
  display: flex;
  flex-flow: row-reverse;
  margin: 60px 0;
  padding: 0 30px;
  width: 100%;
  justify-content: space-around;
  height: 533px;
  flex-wrap: wrap;
}
.second_view .img__01 {
  background-image: url(../../assets/images/new_top/subv_01.png);
  background-size: cover;
  background-position: center;
  width: 50%;
  height: 100%;
}
.second_view .img__02 {
  background-image: url(../../assets/images/new_top/subv_02.png);
  background-size: cover;
  background-position: center;
  width: 30%;
  height: 80%;
}
.second_view .img__03 {
  background-image: url(../../assets/images/new_top/subv_03.png);
  background-size: cover;
  background-position: center;
  width: 15%;
  height: 50%;
}

/*施工事例*/
.works {
  margin-top: 260px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .works {
    margin-top: 180px;
  }
}
.works .yazirusi_right {
  position: absolute;
  width: 100px;
  left: 80%;
  top: 90px;
  margin: 30px;
  height: 20px;
  padding: 120px 0;
  z-index: 9999999;
}
@media screen and (max-width: 768px) {
  .works .yazirusi_right {
    left: 80%;
    top: 40px;
    width: 55px;
    margin: 30px 10px;
    padding: 100px 0 150px 0;
  }
}
.works .yazirusi_right .line01 {
  height: 4px;
  background-color: #000;
}
.works .yazirusi_right .line02 {
  position: absolute;
  top: 120px;
  right: 0;
  transform-origin: right bottom;
  width: 20px;
  height: 3px;
  background-color: #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .works .yazirusi_right .line02 {
    top: 100px;
    right: 2px;
  }
}
.works .yazirusi_left {
  position: absolute;
  width: 100px;
  left: 10%;
  top: 90px;
  margin: 30px;
  height: 20px;
  padding: 120px 0;
  z-index: 9999999;
}
@media screen and (max-width: 768px) {
  .works .yazirusi_left {
    left: 0;
    top: 40px;
    padding: 100px 0 150px 0;
    margin: 30px 10px;
    width: 55px;
  }
}
.works .yazirusi_left .line01 {
  height: 4px;
  background-color: #000;
}
.works .yazirusi_left .line02 {
  position: absolute;
  top: 105px;
  left: -3px;
  transform-origin: right bottom;
  width: 20px;
  height: 3px;
  background-color: #000;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .works .yazirusi_left .line02 {
    top: 85px;
  }
}
.works .title {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .works .title {
    width: 90%;
  }
}
.works .slide-items {
  width: 100%;
  margin-bottom: 100px;
  overflow: hidden;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .works .slide-items {
    margin-bottom: 30px;
  }
}
.works .slide-items a {
  color: #252525;
}
.works .slide-items li {
  display: flex;
  align-items: inherit;
  flex-direction: column;
  margin-bottom: 20px;
}
.works .slide-items h3 {
  font-size: 15px;
  margin-left: 10px;
  margin-top: 10px;
  text-orientation: upright;
}
@media screen and (max-width: 768px) {
  .works .slide-items h3 {
    height: 240px;
    font-size: 22px;
    letter-spacing: 0em;
  }
}
.works .slide-items .slick-slide {
  padding: 0 10px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.works .slide-items .slick-slide:first-child {
  padding-left: 0px;
  /* 左右に10pxの余白を設定 */
}
.works .slide-items .slick-slide:not(.slick-active) {
  opacity: 0.5;
}
.works .slide-items img {
  width: 100%;
  object-fit: cover;
  margin: 0 10px;
}
.works .slick-next {
  right: 15%;
}
.works .slick-prev {
  left: 15%;
}
.works .black_button {
  bottom: -120px;
}
@media screen and (max-width: 768px) {
  .works .black_button {
    bottom: 40px;
  }
}

/*infomation EVENT NEWS*/
.info {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .info {
    width: 90%;
  }
}
.info {
  margin-top: 280px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .info {
    display: block;
    margin-top: 70px;
  }
}
.info span {
  display: block;
  text-align: center;
}
.info a {
  color: #000;
}
.info .news,
.info .event {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .info .news,
  .info .event {
    width: 100%;
  }
}
.info .title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .info .title {
    margin-top: 70px;
  }
}
.info ul {
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 90px;
}
@media screen and (max-width: 768px) {
  .info ul {
    padding: 0 20px;
  }
}
.info ul li {
  position: relative;
  margin-bottom: 35px;
}
.info .news ul li {
  padding-left: 30px;
}
.info .news ul li::before {
  background-color: #A31039;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  /* 縦線の幅 */
  height: 100%;
  /* 縦線の高さ */
}
.info .event .title::before {
  border: 1px solid #000000;
  width: 130px;
  content: "";
  transform: rotate(-50deg);
  display: block;
  position: relative;
  left: -80px;
  top: 60px;
}
@media screen and (max-width: 768px) {
  .info .event .title::before {
    display: none;
  }
}
.info .event ul li {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .info .event ul li {
    padding-left: 0px;
    text-align: center;
  }
}
.info .event ul li::before {
  background-color: #005149;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  /* 縦線の幅 */
  height: 100%;
  /* 縦線の高さ */
}
.info .info_button {
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
  width: 50%;
  text-align: center;
  display: block;
  padding: 10px 0;
  margin: 0 auto;
  margin-top: 50px;
  letter-spacing: 0.15em;
}
.info .red {
  background-color: #A31039;
}
.info .green {
  background-color: #005149;
}

/*Instagram*/
.instagram {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .instagram {
    width: 90%;
  }
}
.instagram {
  margin-top: 40px;
  margin-top: 200px;
}
.instagram .instagram_wrap {
  background-color: #f0f0f0;
  width: 80%;
  display: flex;
}
@media screen and (max-width: 768px) {
  .instagram .instagram_wrap {
    display: block;
  }
}
.instagram .instagram_wrap .insta_feed {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .instagram .instagram_wrap .insta_feed {
    padding: 10px;
    position: relative;
    top: -60px;
  }
}
.instagram .instagram_wrap .insta_feed #sb_instagram .sbi_photo {
  display: block !important;
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 768px) {
  .instagram .instagram_wrap .insta_feed #sb_instagram .sbi_photo {
    width: auto;
    height: auto;
  }
}
.instagram .instagram_wrap .insta_feed .sb-instagram-feed-image {
  height: auto !important;
  width: 100% !important;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .instagram .instagram_wrap {
    width: 100%;
  }
}
.instagram .title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding-left: 60px;
  position: relative;
  top: -60px;
}
@media screen and (max-width: 768px) {
  .instagram .title {
    padding-left: 20px;
    writing-mode: horizontal-tb;
    top: -80px;
  }
}

/*youtube*/
.youtube {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .youtube {
    width: 90%;
  }
}
.youtube {
  margin-top: 100px;
}
.youtube .youtube_wrap {
  width: 100%;
  position: relative;
}
.youtube .title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding-left: 60px;
  position: absolute;
  top: -350px;
  right: 70px;
}
@media screen and (max-width: 768px) {
  .youtube .title {
    writing-mode: horizontal-tb;
    top: -60px;
    right: 0px;
  }
}
.youtube .youtube_list {
  display: flex;
}
.youtube {
  /*画像の横幅を100%にしてレスポンシブ化*/
}
.youtube iframe {
  width: 100%;
  height: 480px;
  vertical-align: bottom;
  /*画像の下にできる余白を削除*/
}
@media screen and (max-width: 768px) {
  .youtube iframe {
    height: 230px;
  }
}
.youtube {
  /*メイン画像下に余白をつける*/
}
.youtube .gallery {
  margin: 0 0 5px 0;
  width: 70%;
  float: left;
}
@media screen and (max-width: 768px) {
  .youtube .gallery {
    width: 100%;
    float: none;
    height: 230px;
  }
}
.youtube .gallery li {
  list-style: none;
}
.youtube .choice-btn {
  float: right;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .youtube .choice-btn {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .youtube .choice-btn .slick-track {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
  }
}
.youtube .choice-btn .slick-slide {
  clear: both !important;
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  .youtube .choice-btn .slick-slide {
    clear: none !important;
    width: 31% !important;
  }
}
.youtube {
  /*選択するサムネイル画像の設定*/
}
.youtube .choice-btn li {
  cursor: pointer;
  outline: none;
  background: #333;
  list-style: none;
  margin-bottom: 30px;
}
.youtube .choice-btn li img {
  opacity: 0.4;
  width: 100%;
  /*選択されていないものは透過40%*/
}
.youtube .choice-btn li.slick-current img {
  opacity: 1;
  /*選択されているものは透過しない*/
}
.youtube .red_button {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .youtube .red_button {
    margin-top: 0;
  }
}

/*分譲・土地情報*/
.real_estate {
  margin-top: 260px;
}
@media screen and (max-width: 768px) {
  .real_estate {
    margin-top: 180px;
  }
}
.real_estate .title span {
  display: block;
  margin-bottom: 15px;
}
.real_estate .title,
.real_estate p {
  text-align: right;
}
.real_estate p {
  line-height: 2.5em;
  font-size: 20px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .real_estate p {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.real_estate p {
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .real_estate p {
    margin-top: 30px 0 50px 0;
  }
}
.real_estate img {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .real_estate img {
    width: 90%;
  }
}
.real_estate img {
  display: block;
}
@media screen and (max-width: 768px) {
  .real_estate img {
    width: 100%;
  }
}

.real_estate_wrap {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .real_estate_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .real_estate_wrap {
    margin-top: 50px;
  }
}

/*リフォーム*/
.reform {
  margin-top: 200px;
}
.reform img {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .reform img {
    width: 90%;
  }
}
.reform img {
  display: block;
}
@media screen and (max-width: 768px) {
  .reform img {
    width: 100%;
  }
}
.reform .title span {
  display: block;
  margin-bottom: 15px;
}
.reform .title,
.reform p {
  text-align: left;
}
.reform p {
  line-height: 2.5em;
  font-size: 20px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .reform p {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.reform p {
  margin: 50px auto;
}
.reform p + p {
  margin-top: 25px;
}

.reform_wrap {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .reform_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .reform_wrap {
    margin-top: 50px;
  }
}

/*モデルハウス*/
.modelhouse {
  margin-top: 200px;
}
.modelhouse img {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .modelhouse img {
    width: 90%;
  }
}
.modelhouse img {
  display: block;
}
@media screen and (max-width: 768px) {
  .modelhouse img {
    width: 100%;
  }
}
.modelhouse .title span {
  display: block;
  margin-bottom: 15px;
}
.modelhouse .title,
.modelhouse p {
  text-align: right;
}
.modelhouse p {
  line-height: 2.5em;
  font-size: 20px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .modelhouse p {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.modelhouse p {
  margin: 50px auto;
}

.modelhouse_wrap {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .modelhouse_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .modelhouse_wrap {
    margin-top: 50px;
  }
}

/*会社案内*/
.company {
  margin-top: 200px;
}
.company .title {
  text-align: left;
  margin-left: 50px;
}
.company span {
  display: block;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 15px;
}
.company img {
  width: 100%;
}
.company .company_wrap {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .company .company_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .company .company_wrap {
    width: 100%;
  }
}
.company .company_wrap .company_body {
  display: flex;
  justify-content: space-between;
  padding: 40px 100px;
}
@media screen and (max-width: 768px) {
  .company .company_wrap .company_body {
    display: block;
    padding: 10px 20px;
  }
}
.company .company_wrap .company__ul__01 {
  display: flex;
  position: relative;
  z-index: 500;
}
.company .company_wrap .company__ul__01 li {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #040426;
  font-size: 25px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .company .company_wrap .company__ul__01 li {
    font-size: 18px;
    margin-right: 10px;
    letter-spacing: 0em;
    margin-left: 10px;
  }
}
.company .company_wrap .company__ul__01 a {
  color: #fff;
  padding: 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  .company .company_wrap .company__ul__01 a {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.company .company_wrap li:nth-child(2) {
  position: relative;
  top: 30px;
}
@media screen and (max-width: 768px) {
  .company .company_wrap li:nth-child(2) {
    margin-top: 0px;
  }
}
.company .company_wrap li:nth-child(3) {
  position: relative;
  top: 60px;
}
@media screen and (max-width: 768px) {
  .company .company_wrap li:nth-child(3) {
    margin-top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .company .company_info {
    margin-top: 100px;
    text-align: right;
  }
}
.company .company_info .tel {
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 45px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .company .company_info .tel {
    font-size: 30px;
    letter-spacing: 0.07em;
  }
}
.company .company_info .tel .fa-phone-volume {
  margin-right: 20px;
}
.company .company_info a {
  color: #040426;
}
.company .company_info .schedule {
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 34px;
  letter-spacing: 0.07em;
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company .company_info .schedule {
    font-size: 25px;
    justify-content: flex-end;
    align-items: baseline;
  }
}
.company .company_info .schedule span {
  font-size: 19px;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .company .company_info .schedule span {
    font-size: 15px;
    margin-left: 10px;
  }
}
.company ul.company__ul__02 {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  top: -110px;
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  .company ul.company__ul__02 {
    margin-right: 0px;
    margin-top: 110px;
    padding-right: 20px;
  }
}
.company ul.company__ul__02 li {
  margin-top: 10px;
  font-size: 30px;
  padding-bottom: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .company ul.company__ul__02 li {
    font-size: 20px;
    margin-bottom: -15px;
    padding-bottom: 10px;
  }
}
.company ul.company__ul__02 li:not(:last-child) {
  border-bottom: 2px solid #040426;
  width: 40%;
}
.company ul.company__ul__02 li:last-child {
  border-bottom: 2px solid #040426;
  width: 85%;
}
@media screen and (max-width: 768px) {
  .company ul.company__ul__02 li:last-child {
    width: 100%;
  }
}

/*フッター*/
footer {
  background-color: #f0f0f0;
  width: 100%;
  padding: 100px 0;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 50px;
  }
}
footer .footer {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .footer {
    width: 90%;
  }
}
footer .footer .footer_info {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_info {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_info .rogo {
    margin: 0 auto;
    padding: 0 120px;
    margin-bottom: 40px;
  }
}
footer .footer .footer_info .rogo img {
  width: 100%;
}
footer .footer .footer_info .about {
  text-align: right;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_info .about {
    text-align: center;
  }
}
footer .footer .footer_info .about .name {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_info .about .name {
    font-size: 22px;
  }
}
footer .footer .footer_info .about .address {
  margin-top: 10px;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_info .about .address {
    margin-top: 5px;
    line-height: 1.7em;
    font-size: 14px;
  }
}
footer .footer .footer_menu {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_menu {
    display: none;
  }
}
footer .footer .footer_menu .footer_menu_item {
  margin: 10px 0;
  font-size: 23px;
  padding-left: 10px;
}
footer .footer .footer_menu .footer_sub_menu {
  list-style-type: none;
  margin: 10px 0 0 0px;
  font-size: 18px;
  margin-right: 10px;
  margin-bottom: 80px;
  border-top: 2px solid #252525;
}
footer .footer .footer_menu .footer_sub_menu li {
  margin: 10px 0;
  margin-right: 5px;
}
footer .footer .footer_menu .footer_sub_menu li:first-child {
  margin-right: 0;
}
footer .footer .recruit_bnr {
  text-align: center;
}
footer .footer .recruit_bnr .pc_bnr {
  display: inline-block;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  footer .footer .recruit_bnr .pc_bnr {
    display: none;
  }
}
footer .footer .recruit_bnr .sp_bnr {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .footer .recruit_bnr .sp_bnr {
    display: inline-block;
    width: 80%;
    margin-bottom: 50px;
  }
}
footer .footer .copyright {
  font-family: circe-slab-a, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  footer .footer .copyright {
    font-size: 7px;
  }
}
footer .sp_footer {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .sp_footer {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 600;
  }
  footer .sp_footer .sp_footer_ul {
    display: flex;
    justify-content: space-between;
  }
  footer .sp_footer .sp_footer_ul li {
    width: 33%;
    padding: 10px 0;
    background-color: #151515;
    text-align: center;
    font-size: 15px;
  }
  footer .sp_footer .sp_footer_ul li i {
    margin-right: 8px;
    font-size: 16px;
  }
  footer .sp_footer .sp_footer_ul li:last-child {
    margin-right: 0;
  }
  footer .sp_footer .sp_footer_ul li a {
    color: #ffffff;
  }
}
