@charset "UTF-8";
/*///////////////////////////////////////////////////
//
//            ▼ ベース設定 ▼
//
///////////////////////////////////////////////////*/
html {
  color: #fff;
  font-size: calc(12px + 4 * (100vw - 768px) / 912);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}

@media screen and (min-width: 1680px) {
  html {
    font-size: 16px;
  }
}
a {
  color: #3A3A3A;
  display: block;
}

#wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
}

section,
.section {
  width: 100%;
  height: auto;
  position: relative;
}

.l_container {
  width: 95%;
  margin: 0 auto;
  max-width: 1680px;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1280px;
}

.m_container {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}

.s_container {
  width: 90%;
  margin: 0 auto;
  max-width: 960px;
}

/* @media screen and (min-width:1540px) {
	.l_container {
		max-width: 1680px;
	}

	.container {
		max-width: 1480px;
	}
}

@media screen and (min-width:1280px) and (max-width:1539px) {
	html {
		font-size: 15px;
	}

	.container {
		max-width: 1280px;
	}
}

@media screen and (min-width:768px) and (max-width:1279px) {
	html {
		font-size: 14px;
	}

	.container {
		max-width: none;
	}
} */
.is_sp {
  display: none;
}

.is_tab {
  display: none;
}

@media screen and (min-width: 751px) and (max-width: 1025px) {
  /* html {
  	font-size: 13px;
  } */
  .is_hidden_tab {
    display: none;
  }
  .is_tab {
    display: block;
  }
}
.objectCover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  font-family: "object-fit: cover;object-position: 50% 50%;";
}

.objectContain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  font-family: "object-fit: contain;object-position: 50% 50%;";
}

.point_reader {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.preload * {
  transition: none;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/*///////////////////////////////////////////////////
//
//            ▼ 共通 ▼
//
///////////////////////////////////////////////////*/
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .is_hidden_tab {
    display: none;
  }
}
main {
  background: #1D1D1D;
}

.en {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
}

.contact_btn {
  width: 20rem;
  position: relative;
}
.contact_btn::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: -1.88rem;
  margin: auto 0;
  width: 3.75rem;
  height: 0.65625rem;
  background: url(../images/common/btn_arrow01.png) no-repeat center/contain;
  animation: btnHover-out 0.5s ease forwards;
}
.contact_btn a,
.contact_btn button {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.77;
  text-transform: uppercase;
  color: #fff;
  background: #CB5733;
  border: solid 2px #CB5733;
  padding: 1.5rem 0;
  margin: 0 auto 0 0;
  transition: 0.3s;
}
.contact_btn:hover::before {
  background: url(../images/common/btn_arrow02.png) no-repeat center/contain;
  animation: btnHover 0.5s ease forwards;
}
.contact_btn:hover a,
.contact_btn:hover button {
  color: #CB5733;
  background: #fff;
}
@keyframes btnHover {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
    transform: scaleX(0);
  }
  51% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
@keyframes btnHover-out {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
    transform: scaleX(0);
  }
  51% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}

.scrollgress {
  z-index: 3;
}

/*///////////////////////////////////////////////////
//
//            ▼ ナビ ▼
//
///////////////////////////////////////////////////*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50000;
}
header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 3.75rem;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  header .header_inner {
    padding-right: 1.875rem;
  }
}
header .header_inner .logo {
  line-height: 1;
  min-width: 6rem;
  max-width: 10rem;
  display: flex;
  align-items: center;
  background: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  header .header_inner .logo {
    width: 7rem;
    min-width: 4rem;
  }
}
header .header_inner .logo a {
  width: 100%;
  transition: 0.3s;
}
header .header_inner .logo a:hover {
  opacity: 0.85;
}
header .header_inner .logo a img {
  display: block;
  width: 100%;
  height: auto;
}
header .header_inner nav {
  background: #fff;
}
header .header_inner nav ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  header .header_inner nav ul li {
    max-width: 200px;
  }
}
header .header_inner nav ul li a {
  padding: 1.25rem 3rem;
  font-weight: 700;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  header .header_inner nav ul li a {
    padding: 1.25rem 2rem;
  }
}
header .header_inner nav ul li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: 0;
  background: #CB5733;
  transition: all 0.3s ease;
}
header .header_inner nav ul li a:hover {
  color: #CB5733;
}
header .header_inner nav ul li a:hover::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: 14px;
  background: #CB5733;
}
header .header_inner nav ul li a.contact_btn {
  width: 100%;
  background: #CB5733;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
header .header_inner nav ul li a.contact_btn:hover {
  background: #000;
}
header .header_inner nav ul li a.contact_btn:hover::before {
  height: 0;
}

/*///////////////////////////////////////////////////
//
//            ▼ フッター ▼
//
///////////////////////////////////////////////////*/
footer {
  background: #1D1D1D;
  border-top: solid 1px #fff;
}
footer .footer_in {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 3rem;
  padding: 3.75rem 0;
}
footer .footer_in .logo a {
  transition: 0.3s;
}
footer .footer_in .logo a figure {
  width: 9.0625rem;
  height: 9.0625rem;
}
footer .footer_in .logo a .name {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin: 1rem 0 0;
}
footer .footer_in .logo a:hover {
  opacity: 0.7;
}
footer .footer_in .nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_in .nav li {
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
footer .footer_in .nav li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 1.125rem;
  background: #bbb;
}
footer .footer_in .nav li:last-of-type::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 1.125rem;
  background: #bbb;
}
footer .footer_in .nav li a {
  font-weight: 500;
  line-height: 1.5;
  color: #bbb;
  padding: 0 2.625rem;
  position: relative;
  transition: 0.3s;
}
footer .footer_in .nav li a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background: #CB5733;
  transition: 0.3s;
}
footer .footer_in .nav li a:hover {
  color: #CB5733;
}
footer .footer_in .nav li a:hover::before {
  width: 8em;
}
footer .footer_in .nav li:nth-of-type(3) a:hover::before {
  width: 4em;
}
footer .footer_in .contact_btn02 {
  width: 12.5rem;
  line-height: 1.5;
  color: #bbb;
  text-align: center;
  border: solid 1px #bbb;
  padding: 1.25rem 0.625rem;
  transition: 0.3s;
}
footer .footer_in .contact_btn02:hover {
  color: #fff;
  border: solid 1px #CB5733;
  background: #CB5733;
}
footer .copyright {
  border-top: solid 1px #fff;
  padding: 1rem 0;
}
footer .copyright .center_txt {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

/*///////////////////////////////////////////////////
//
//            ▼ トップ01 ▼
//
///////////////////////////////////////////////////*/
.top01 {
  background: #000;
}
.top01 .mv {
  height: 100vh;
  display: flex;
  justify-content: center;
  min-height: 820px;
  overflow-y: scroll;
}
.top01 .mv .box_left,
.top01 .mv .box_right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top01 .mv .box_left .inner,
.top01 .mv .box_right .inner {
  width: 72.92%;
  height: 80.55%;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .top01 .mv .box_left .inner,
.top01 .mv .box_right .inner {
    width: 82%;
  }
}
.top01 .mv .box_left .inner a,
.top01 .mv .box_right .inner a {
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.top01 .mv .box_left .inner a::before,
.top01 .mv .box_right .inner a::before {
  position: absolute;
  z-index: 2;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.top01 .mv .box_left .inner a:hover::before,
.top01 .mv .box_right .inner a:hover::before {
  opacity: 0;
}
.top01 .mv .box_left .inner a:hover picture img,
.top01 .mv .box_right .inner a:hover picture img {
  transform: scale(1.05);
}
.top01 .mv .box_left .inner a:hover .txt_box .circle,
.top01 .mv .box_right .inner a:hover .txt_box .circle {
  transform: scale(1.05);
}
.top01 .mv .box_left .inner a picture img,
.top01 .mv .box_right .inner a picture img {
  transition: all 0.3s ease;
  transform: scale(1);
}
.top01 .mv .box_left .inner a .txt_box,
.top01 .mv .box_right .inner a .txt_box {
  position: absolute;
  z-index: 3;
  bottom: 12%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.top01 .mv .box_left .inner a .txt_box .txt,
.top01 .mv .box_right .inner a .txt_box .txt {
  font-weight: 700;
  line-height: normal;
  margin: 0 0 1.5rem;
}
.top01 .mv .box_left .inner a .txt_box .txt span,
.top01 .mv .box_right .inner a .txt_box .txt span {
  font-size: 2rem;
}
.top01 .mv .box_left .inner a .txt_box .txt h2,
.top01 .mv .box_right .inner a .txt_box .txt h2 {
  font-size: 1rem;
}
.top01 .mv .box_left .inner a .txt_box .circle,
.top01 .mv .box_right .inner a .txt_box .circle {
  width: 12.5rem;
  height: 12.5rem;
  margin: 0 auto;
  border: solid 3px #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: scale(1);
  transition: all 0.3s ease;
}
.top01 .mv .box_left .inner a .txt_box .circle span,
.top01 .mv .box_right .inner a .txt_box .circle span {
  font-size: 1.25rem;
  font-weight: 700;
}
.top01 .mv .box_left {
  position: relative;
}
.top01 .mv .box_left::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/left_bg.jpg) no-repeat center/cover;
  opacity: 0.15;
}
.top01 .mv .box_left .inner {
  position: relative;
}
.top01 .mv .box_left .inner::before {
  position: absolute;
  z-index: 3;
  content: "";
  bottom: -0.84375rem;
  left: -3.6875rem;
  width: 9.125rem;
  height: 33.96875rem;
  background: url(../images/top/left_img01.png) no-repeat center/contain;
}
.top01 .mv .box_left .inner::after {
  position: absolute;
  z-index: 3;
  content: "";
  top: -0.84375rem;
  right: -0.84375rem;
  width: 6.25rem;
  height: 6.25rem;
  background: url(../images/top/left_img02.png) no-repeat center/contain;
}
.top01 .mv .box_right {
  position: relative;
}
.top01 .mv .box_right::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/right_bg.jpg) no-repeat center/cover;
  opacity: 0.15;
}
.top01 .mv .box_right .inner {
  position: relative;
}
.top01 .mv .box_right .inner::before {
  position: absolute;
  z-index: 3;
  content: "";
  top: -0.84375rem;
  right: -3.6875rem;
  width: 9.125rem;
  height: 33.96875rem;
  background: url(../images/top/right_img01.png) no-repeat center/contain;
}
.top01 .mv .box_right .inner::after {
  position: absolute;
  z-index: 3;
  content: "";
  bottom: -0.84375rem;
  left: -0.84375rem;
  width: 6.25rem;
  height: 6.25rem;
  background: url(../images/top/right_img02.png) no-repeat center/contain;
}

/*///////////////////////////////////////////////////
//
//            ▼ CTA ▼
//
///////////////////////////////////////////////////*/
.cta .contact_area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8.125rem 2.5rem 6.625rem;
  position: relative;
}
.cta .contact_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/contact_img01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.cta .contact_area .contact_in {
  position: relative;
  z-index: 1;
}
.cta .contact_area .contact_in .section_ttl .ja {
  text-align: center;
}
.cta .contact_area .contact_in .txt {
  font-weight: 700;
  line-height: 2;
  margin: 2.8125rem 0 0;
}
.cta .contact_area .contact_in .contact_btn {
  margin: 3.5rem auto 0;
}
.cta .access_area {
  padding: 3.75rem 0;
}
.cta .access_area .access_in {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.cta .access_area .access_in .txt_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 52.34375%;
  min-width: 52.34375%;
  min-height: 28.875rem;
  background: #fff;
  padding: 5rem 6.25rem;
  margin: 0 0 4rem;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .cta .access_area .access_in .txt_box {
    padding: 3.75rem 2.5rem;
    min-height: unset;
  }
}
.cta .access_area .access_in .txt_box .section_ttl .en,
.cta .access_area .access_in .txt_box .section_ttl .ja {
  color: #3A3A3A;
}
.cta .access_area .access_in .txt_box .address {
  font-weight: 500;
  line-height: 1.5;
  color: #3A3A3A;
  margin: 2.5rem 0 0;
}
.cta .access_area .access_in .txt_box .address span {
  font-size: 1rem;
  color: #CB5733;
  margin-right: 0.25rem;
}
.cta .access_area .access_in .txt_box .contact_btn {
  margin: 1.625rem 0 0;
}
.cta .access_area .access_in .txt_box .contact_btn::before {
  background: url(../images/common/btn_arrow01_black.png) no-repeat center/contain;
}
.cta .access_area .access_in .txt_box .contact_btn:hover::before {
  background: url(../images/common/btn_arrow02.png) no-repeat center/contain;
}
.cta .access_area .access_in .map {
  width: 52.34375%;
  min-width: 52.34375%;
  aspect-ratio: 335/233;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.cta .access_area .access_in .map iframe {
  width: 100%;
  height: 100%;
}

/*///////////////////////////////////////////////////
//
//            ▼ 下層共通 ▼
//
///////////////////////////////////////////////////*/
.lower_mv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  column-gap: 11.875rem;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .lower_mv {
    padding-top: 3.75rem;
    column-gap: 7rem;
  }
}
.lower_mv .left {
  margin: 0 0 0 6.25vw;
  width: 29.6875vw;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .lower_mv .left {
    width: auto;
    min-width: 38%;
  }
}
.lower_mv .left .lower_ttl {
  width: 29.6875vw;
  min-width: 29.6875vw;
}
.lower_mv .left .lower_ttl .en,
.lower_mv .left .lower_ttl .ja {
  display: block;
  font-weight: 700;
  color: #fff;
}
.lower_mv .left .lower_ttl .en {
  font-size: clamp(2.5rem, 4.2708333333vw, 5.125rem);
  line-height: 1.5;
  letter-spacing: 0.041em;
  text-transform: uppercase;
}
.lower_mv .left .lower_ttl .ja {
  font-size: clamp(0.875rem, 1.0416666667vw, 1.25rem);
  line-height: 2;
  position: relative;
  padding-left: calc(100% - 10.5em - 1.25rem);
}
.lower_mv .left .lower_ttl .ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #CB5733;
}
.lower_mv .left .lower_ttl .ja span {
  display: block;
  background: #1D1D1D;
  padding-left: 1.25rem;
  position: relative;
  z-index: 1;
}
.lower_mv .left .intro {
  font-size: clamp(13px, 0.8333333333vw, 1rem);
  font-weight: 500;
  margin: 4.875rem 0 0;
}
.lower_mv .right {
  flex-grow: 1;
  min-width: calc(62% - 6rem);
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
.lower_mv .right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 5rem);
  height: 100%;
  z-index: -1;
  background: url(../images/consulting/mv_bg.png) center/cover no-repeat;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .lower_mv .right::before {
    width: calc(100% - 2.5rem);
  }
}
.lower_mv .right figure {
  width: 79.3269230769%;
}
.lower_mv .right figure img {
  width: 100%;
}
.lower_mv .scroll {
  position: absolute;
  top: 100%;
  left: 2.5vw;
  width: 11.875rem;
  padding-left: calc(11.875rem - 6em - 1rem);
  transform: rotate(-90deg);
  transform-origin: top left;
}
.lower_mv .scroll::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(11.875rem - 6em - 1rem);
  height: 1px;
  background: #fff;
  animation: scroll_ani 2s infinite;
  animation-fill-mode: both;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .lower_mv .scroll {
    width: 9.75rem;
    padding-left: calc(9.75rem - 6em - 1rem);
  }
  .lower_mv .scroll::before {
    width: calc(9.75rem - 6em - 1rem);
  }
}
.lower_mv .scroll p {
  font-size: clamp(0.875rem, 1.0416666667vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  background: #1D1D1D;
  padding-left: 1rem;
  position: relative;
  z-index: 2;
}
@keyframes scroll_ani {
  0% {
    transform: translate(100%, 0);
    width: calc(11.875rem - 6em - 1rem);
  }
  50% {
    transform: translate(0, 0);
    width: calc(11.875rem - 6em - 1rem);
  }
  100% {
    transform: translate(0, 0);
    width: 0;
  }
}

.section_ttl .en,
.section_ttl .ja {
  display: block;
  font-weight: 700;
  color: #fff;
}
.section_ttl .en {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: normal;
}
.section_ttl .ja {
  font-size: 1.25rem;
  line-height: 1.5;
}

/*///////////////////////////////////////////////////
//
//            ▼ ビルメンテナンス01▼
//
///////////////////////////////////////////////////*/
.building01 {
  column-gap: 5.625rem;
}
.building01 .left {
  width: 33.5416666667vw;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .building01 .left {
    min-width: 40%;
    margin-top: 4rem;
  }
}
.building01 .left .lower_ttl {
  width: 33.5416666667vw;
  min-width: 33.5416666667vw;
}
.building01 .right::before {
  background: url(../images/building/mv_bg.png) center/cover no-repeat;
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング02 共通▼
//            ▼ ビルメンテナンス02 共通▼
//
///////////////////////////////////////////////////*/
.common_business02 {
  margin: 5.9375rem 0 0;
}
.common_business02 .common_business02_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 3.75rem;
}
.common_business02 .common_business02_in .section_ttl {
  width: 100%;
}
.common_business02 .common_business02_in .left {
  width: 39.375%;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business02 .common_business02_in .left {
    width: 50%;
  }
}
.common_business02 .common_business02_in .left .strength_list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.common_business02 .common_business02_in .left .strength_list .item .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1.625rem;
  position: relative;
}
.common_business02 .common_business02_in .left .strength_list .item .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.1875rem;
  background: #CB5733;
}
.common_business02 .common_business02_in .left .strength_list .item .txt {
  font-weight: 400;
  line-height: 1.8;
  margin: 1.03125rem 0 0;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business02 .common_business02_in .left .strength_list .item .txt {
    font-size: 0.9375rem;
  }
}
.common_business02 .common_business02_in .left .strength_list .item .txt .orange {
  color: #CB5733;
}
.common_business02 .common_business02_in .left .strength_list .item .txt .line {
  font-weight: 700;
  border-bottom: solid 1px #fff;
}
.common_business02 .common_business02_in .right {
  width: 53.125%;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business02 .common_business02_in .right {
    width: 45%;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ ビルメンテナンス02 ▼
//
///////////////////////////////////////////////////*/
.building02 .common_business02_in .left .strength_list {
  margin: 3.75rem 0 0;
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング03 共通▼
//            ▼ ビルメンテナンス03 共通▼
//
///////////////////////////////////////////////////*/
.common_business03 {
  margin: 6.25rem 0 0;
  position: relative;
}
.common_business03::before, .common_business03::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.common_business03::before {
  top: 0;
}
.common_business03::after {
  bottom: 0;
}
.common_business03 .container {
  position: relative;
}
.common_business03 .container .section_ttl02 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
  padding-left: 4.25rem;
  position: absolute;
  top: 1.875rem;
  left: -1.25rem;
  transform: rotate(90deg);
  transform-origin: top left;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business03 .container .section_ttl02 {
    left: 0;
  }
}
.common_business03 .container .section_ttl02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 1px;
  background: #fff;
}
.common_business03 .container .scroll_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background: #fff;
}
.common_business03 .common_business03_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 2.5rem;
  padding: 3.75rem 3rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business03 .common_business03_in {
    gap: 1.25rem;
  }
}
.common_business03 .common_business03_in::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
.common_business03 .common_business03_in .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30.9966216216%;
  height: auto;
  aspect-ratio: 92/85;
  background: #fff;
  padding: 3.5rem 1.25rem;
}
@media screen and (min-width: 1026px) and (max-width: 1279.999px) {
  .common_business03 .common_business03_in .item {
    width: 30.7432432432%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business03 .common_business03_in .item {
    width: calc((100% - 2.5rem) / 3);
    padding: 2.5rem 1.125rem;
  }
}
.common_business03 .common_business03_in .item .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.common_business03 .common_business03_in .item .inner figure img {
  width: 100%;
}
.common_business03 .common_business03_in .item .inner .txt {
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #3A3A3A;
  margin: 1.375rem 0 0;
}
.common_business03 .common_business03_in .item:first-of-type {
  background: none;
  border: solid 1px #fff;
}
.common_business03 .common_business03_in .item:first-of-type .inner {
  width: 100%;
  height: 100%;
}
.common_business03 .common_business03_in .item:first-of-type .inner .sub_ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.016em;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business03 .common_business03_in .item:first-of-type .inner .sub_ttl {
    font-size: 1.5rem;
  }
}
.common_business03 .common_business03_in .item:first-of-type .inner .sub_ttl .orange {
  color: #CB5733;
}
.common_business03 .common_business03_in .item:nth-of-type(2) .inner figure {
  width: 7.59375rem;
}
.common_business03 .common_business03_in .item:nth-of-type(3) .inner figure {
  width: 6.25rem;
}
.common_business03 .common_business03_in .item:nth-of-type(4) .inner figure {
  width: 8.21875rem;
}
.common_business03 .common_business03_in .item:nth-of-type(5) .inner figure {
  width: 9.0625rem;
}
.common_business03 .common_business03_in .item:nth-of-type(6) .inner figure {
  width: 7.6875rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ ビルメンテナンス03▼
//
///////////////////////////////////////////////////*/
.building03 .common_business03_in .item:nth-of-type(2) .inner figure {
  width: 5.03875rem;
}
.building03 .common_business03_in .item:nth-of-type(3) .inner figure {
  width: 10.1875rem;
}
.building03 .common_business03_in .item:nth-of-type(4) .inner figure {
  width: 10.34375rem;
}
.building03 .common_business03_in .item:nth-of-type(5) .inner figure {
  width: 7.8125rem;
}
.building03 .common_business03_in .item:nth-of-type(6) .inner figure {
  width: 8.5rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング04 共通▼
//            ▼ ビルメンテナンス04 共通▼
//
///////////////////////////////////////////////////*/
.common_business04 {
  margin: 3.75rem 0 0;
  padding: 0 0 3.75rem;
  position: relative;
}
.common_business04::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.common_business04 .section_ttl {
  width: 90%;
  margin: 0 auto;
  max-width: 1280px;
  padding: 1.75rem 0 0;
  position: relative;
  z-index: 1;
}
.common_business04 .common_business04_in {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  margin: -8.3125rem 0 0;
}
.common_business04 .common_business04_in .item {
  padding: 6.25rem 0 1.875rem;
  position: relative;
}
.common_business04 .common_business04_in .item::before {
  content: "";
  position: absolute;
  top: 0;
  width: 62.5%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.common_business04 .common_business04_in .item .inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.common_business04 .common_business04_in .item .inner .scroll_bar {
  position: absolute;
  top: -7.1875rem;
  left: 0;
  width: 1px;
  height: 0;
  background: #fff;
}
.common_business04 .common_business04_in .item figure {
  width: 51.5625%;
  padding: 0 0 6.25rem;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 2;
}
.common_business04 .common_business04_in .item figure img {
  width: 100%;
}
.common_business04 .common_business04_in .item .txt_box {
  width: 52.734375%;
  background: #fff;
  padding: 5rem 6.25rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business04 .common_business04_in .item .txt_box {
    padding: 3.75rem;
  }
}
.common_business04 .common_business04_in .item .txt_box .ttl {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3A3A3A;
}
.common_business04 .common_business04_in .item .txt_box .ttl .nm {
  font-size: 3rem;
  color: #CB5733;
  margin-right: 0.875rem;
}
.common_business04 .common_business04_in .item .txt_box .txt {
  font-weight: 500;
  line-height: 2;
  color: #3A3A3A;
}
.common_business04 .common_business04_in .item.item01::before {
  right: 0;
  background-image: url(../images/consulting/consulting04_img01bg.png);
}
.common_business04 .common_business04_in .item.item01 .inner .scroll_bar {
  top: 3.75rem;
}
.common_business04 .common_business04_in .item.item02::before {
  left: 0;
  background-image: url(../images/consulting/consulting04_img02bg.png);
}
.common_business04 .common_business04_in .item:last-of-type::before {
  right: 0;
  background-image: url(../images/consulting//consulting04_img03bg.png);
}
.common_business04 .common_business04_in .item:last-of-type .inner .scroll_bar_last {
  position: absolute;
  top: calc(100% + 1.0625rem);
  left: 0;
  width: 1px;
  height: 0;
  background: #fff;
}

/*///////////////////////////////////////////////////
//
//            ▼ ビルメンテナンス04▼
//
///////////////////////////////////////////////////*/
.building04 .common_business04_in .item.item01::before {
  background-image: url(../images/building/building04_img01_bg.png);
}
.building04 .common_business04_in .item.item02::before {
  left: 0;
  background-image: url(../images/building/building04_img02_bg.png);
}
.building04 .common_business04_in .item.item03::before {
  right: 0;
  background-image: url(../images/building/building04_img03_bg.png);
}
.building04 .common_business04_in .item.item04::before {
  left: 0;
  background-image: url(../images/building/building04_img04_bg.png);
}
.building04 .common_business04_in .item:last-of-type::before {
  right: 0;
  background-image: url(../images/building//building04_img05_bg.png);
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング05 共通▼
//            ▼ ビルメンテナンス05 共通▼
//
///////////////////////////////////////////////////*/
.common_business05 {
  margin: 5rem 0 0;
}
.common_business05 .common_business05_in {
  display: flex;
  justify-content: center;
  align-items: stretch;
  column-gap: 2.5rem;
  margin: 3.75rem 0 0;
}
.common_business05 .common_business05_in .item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 31.25%;
  border: solid 1px #fff;
  aspect-ratio: 20/17;
  padding: 3.5625rem 3rem;
}
.common_business05 .common_business05_in .item .inner figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .common_business05 .common_business05_in .item .inner figure {
    width: auto;
    height: 6rem;
  }
  .common_business05 .common_business05_in .item .inner figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.common_business05 .common_business05_in .item .inner .txt {
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin: 1.375rem 0 0;
}
.common_business05 .closing_sentence {
  padding: 6.25rem 0 1.875rem;
  margin: 3.75rem 0 0;
  position: relative;
  z-index: 1;
}
.common_business05 .closing_sentence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(100% + 1.875rem);
  background: #fff;
  animation: scroll_ani02 2s infinite;
  animation-fill-mode: both;
}
.common_business05 .closing_sentence span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  background: #1D1D1D;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}
@keyframes scroll_ani02 {
  0% {
    transform: scale(0);
    transform-origin: top;
  }
  50% {
    transform: scale(1);
    transform-origin: top;
  }
  51% {
    transform: scale(1);
    transform-origin: bottom;
  }
  100% {
    transform: scale(0);
    transform-origin: bottom;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング05 ▼
//
///////////////////////////////////////////////////*/
.consulting05 .common_business05_in .item:first-of-type .inner figure {
  width: 8.125rem;
}
.consulting05 .common_business05_in .item:nth-of-type(2) .inner figure {
  width: 5.75rem;
  margin: 0 auto;
}
.consulting05 .common_business05_in .item:nth-of-type(3) .inner figure {
  width: 7.0625rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ ビルメンテナンス05 ▼
//
///////////////////////////////////////////////////*/
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .building05 .common_business05_in {
    flex-wrap: wrap;
    row-gap: 2.5rem;
  }
}
.building05 .common_business05_in .item:first-of-type .inner figure {
  width: 5.75rem;
  margin: 0 auto;
}
.building05 .common_business05_in .item:nth-of-type(2) .inner figure {
  width: 8.1875rem;
}
.building05 .common_business05_in .item:nth-of-type(3) .inner figure {
  width: 7.4375rem;
}
.building05 .common_business05_in .item:last-of-type .inner figure {
  width: 7.53125rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ 会社概要01 ▼
//
///////////////////////////////////////////////////*/
.company01 {
  column-gap: 12.4375rem;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .company01 {
    column-gap: 12rem;
  }
}
.company01 .left {
  width: 23.75vw;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .company01 .left {
    min-width: 30%;
  }
}
.company01 .left .lower_ttl {
  width: 23.75vw;
  min-width: 23.75vw;
}
.company01 .left .lower_ttl .ja {
  padding-left: calc(100% - 4.5em - 1.25rem);
}
.company01 .right::before {
  background: url(../images/company/mv_bg.png) center/cover no-repeat;
}

/*///////////////////////////////////////////////////
//
//            ▼ 会社概要02 ▼
//
///////////////////////////////////////////////////*/
.company02 {
  margin: 8.75rem 0 0;
}
.company02 .heading_ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.company02 .heading_ttl .orange {
  color: #CB5733;
}
.company02 .txt {
  font-weight: 500;
  line-height: 2;
  margin: 3rem 3.75rem 0;
}
@media screen and (min-width: 768px) and (max-width: 1279.999px) {
  .company02 .txt {
    width: fit-content;
    margin: 3rem auto 0;
  }
}
.company02 .name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.8125rem;
  margin: 3rem 3.75rem 0;
}
.company02 .name span:first-of-type {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
}
.company02 .name span:last-of-type {
  width: 5.3125rem;
}
.company02 .name span:last-of-type img {
  display: block;
  width: 100%;
}

/*///////////////////////////////////////////////////
//
//            ▼ 会社概要03 ▼
//
///////////////////////////////////////////////////*/
.company03 {
  margin: 3.5rem 0 8.75rem;
}
.company03 .company03_in {
  margin: 3.75rem 0 0;
}
.company03 .company03_in .item {
  display: flex;
  align-items: center;
}
.company03 .company03_in .item dt,
.company03 .company03_in .item dd {
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
}
.company03 .company03_in .item dt {
  width: 20%;
  min-width: 120px;
  font-weight: 700;
  border-bottom: solid 1px #CB5733;
  padding: 2rem 0.625rem 1.4375rem;
}
.company03 .company03_in .item dd {
  width: 80%;
  font-weight: 500;
  border-bottom: solid 1px #fff;
  padding: 2rem 1.25rem 1.4375rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ 投稿エリア ▼
//
///////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////
//
//            ▼ お問い合わせ（Contactform7） ▼
//
///////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////
//
//            ▼ お問い合わせ01 ▼
//
///////////////////////////////////////////////////*/
.contact01 {
  padding: 12.5rem 0;
  overflow: visible;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .contact01 {
    padding: 11.25rem 0 7.5rem;
  }
}
.contact01 .left {
  width: 22.5520833333vw;
  margin-top: 10rem;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .contact01 .left {
    margin-top: 0;
  }
}
.contact01 .left .lower_ttl {
  width: 22.5520833333vw;
  min-width: 22.5520833333vw;
}
.contact01 .left .lower_ttl .ja {
  padding-left: calc(100% - 6.5em - 1.25rem);
}
.contact01 .left .scroll {
  bottom: -22rem;
  top: unset;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .contact01 .left .scroll {
    bottom: -25rem;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ お問い合わせ02 ▼
//
///////////////////////////////////////////////////*/
.contact02 {
  margin: 0 0 8.75rem;
}
.contact02 .attention {
  margin: 3rem 0 0;
}
.contact02 .attention .time {
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1.625rem;
  position: relative;
}
.contact02 .attention .time::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.1875rem;
  background: #CB5733;
}
.contact02 .attention .annotation {
  font-weight: 400;
  line-height: 2;
  margin: 0.875rem 0 0;
}
.contact02 .attention .annotation .require {
  display: inline-block;
  width: 3.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  border-radius: 0.125rem;
  background: #CB5733;
  padding: 0.25rem;
  margin: 0 0.25rem;
}
.contact02 .form_box {
  margin: 5rem 0 0;
}
.contact02 .form_box form .item {
  display: flex;
  justify-content: center;
  margin: 2.8125rem 0 0;
}
.contact02 .form_box form .item .inner:first-of-type {
  width: 16.125rem;
  min-width: 120px;
}
.contact02 .form_box form .item .inner:first-of-type label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .contact02 .form_box form .item .inner:first-of-type {
    width: 11.25rem;
  }
}
.contact02 .form_box form .item .inner:last-of-type {
  flex-grow: 1;
}
.contact02 .form_box form .item .inner:last-of-type .require {
  display: inline-block;
  width: 5.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border-radius: 0.125rem 0.125rem 0 0;
  background: #CB5733;
  padding: 0.25rem;
}
.contact02 .form_box form .item .inner:last-of-type input,
.contact02 .form_box form .item .inner:last-of-type select,
.contact02 .form_box form .item .inner:last-of-type textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.87;
  border: solid 1px #a0a0a0;
  background: #fff;
  margin: 0;
  padding: 1.375rem 1.125rem;
  transform: translateY(-4px);
}
.contact02 .form_box form .item .inner:last-of-type input ::placeholder,
.contact02 .form_box form .item .inner:last-of-type select ::placeholder,
.contact02 .form_box form .item .inner:last-of-type textarea ::placeholder {
  font-weight: 500;
  color: #a0a0a0;
}
.contact02 .form_box form .item .inner:last-of-type textarea {
  height: 15.25rem;
}
.contact02 .form_box form .item .inner:last-of-type select {
  -webkit-appearance: none;
  appearance: none;
  color: #3A3A3A;
  background: url(../images/contact/arrow.svg) 98% center/1.25rem 0.6875rem no-repeat #fff;
  cursor: pointer;
}
.contact02 .form_box form .item .inner:last-of-type select ::-ms-expand {
  display: none;
  /* デフォルトの矢印を非表示(IE用) */
}
.contact02 .form_box form .item:first-of-type {
  margin-top: 0;
}
.contact02 .form_box form .item.msg_item {
  justify-content: flex-start;
}
.contact02 .form_box form .item.msg_item .inner:first-of-type label {
  align-items: flex-start;
  margin-top: 1.5rem;
}
.contact02 .form_box form .acceptance {
  width: fit-content;
  margin: 3.75rem auto 0;
}
.contact02 .form_box form .acceptance .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  cursor: pointer;
}
.contact02 .form_box form .acceptance .inner input {
  width: 1.5rem;
  height: 1.5rem;
  border: solid 2px #fff;
  border-radius: unset;
  background: none;
  cursor: pointer;
  position: relative;
  /* デフォルトのcssを非表示 */
  -webkit-appearance: none;
  appearance: none;
}
.contact02 .form_box form .acceptance .inner input ::-ms-expand {
  display: none;
  /* デフォルトのcssを非表示(IE用) */
}
.contact02 .form_box form .acceptance .inner input::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.5rem;
  width: 1.15625rem;
  height: 0.84375rem;
  background: url(../images/contact/check.svg) center/cover no-repeat;
  opacity: 0;
}
.contact02 .form_box form .acceptance .inner input:checked::before {
  opacity: 1;
}
.contact02 .form_box form .acceptance .inner label {
  font-weight: 700;
  line-height: 2;
  cursor: pointer;
}
.contact02 .form_box form .submit {
  margin: 3rem auto 0;
}
.contact02 .form_box form .submit button {
  width: 100%;
  cursor: pointer;
}

/*///////////////////////////////////////////////////
//
//            ▼ プライバシーポリシー ▼
//
///////////////////////////////////////////////////*/
.privacypolicy {
  max-width: 960px;
  margin: 5rem auto 0;
}
.privacypolicy h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.privacypolicy .box_in {
  width: 100%;
  height: 16.25rem;
  color: #3A3A3A;
  background: #fff;
  overflow: scroll;
  padding: 2rem 3.75rem;
  margin: 2.5rem 0;
}
.privacypolicy .box_in h1 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2rem;
}
.privacypolicy .box_in h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0;
}
.privacypolicy .box_in ol {
  margin: 0 0 1rem 2rem;
}
.privacypolicy .box_in ol li {
  list-style: decimal;
  margin: 0.5rem 0;
}
.privacypolicy .box_in ul {
  margin: 0 0 1rem 2rem;
}
.privacypolicy .box_in ul li {
  list-style: disc;
}
.privacypolicy .box_in ul li ol {
  margin: 0rem 0 1.5rem 2rem;
}
.privacypolicy .box_in ul li ol li {
  list-style: decimal;
}
.privacypolicy .box_in .right {
  text-align: right;
}

/*///////////////////////////////////////////////////
//
//            ▼ サンクス01 ▼
//
///////////////////////////////////////////////////*/
.thanks01 {
  padding: 12.5rem 0;
  overflow: visible;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .thanks01 {
    padding: 11.25rem 0 7.5rem;
  }
}
.thanks01 .left {
  width: 39.7916666667vw;
  margin-top: 10rem;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  .thanks01 .left {
    margin-top: 0;
  }
}
.thanks01 .left .lower_ttl {
  width: 39.7916666667vw;
  min-width: 39.7916666667vw;
}
.thanks01 .left .lower_ttl .ja {
  padding-left: calc(100% - 16.5em - 1.25rem);
}
.thanks01 .left .scroll {
  bottom: unset;
  top: 120%;
}

/*///////////////////////////////////////////////////
//
//            ▼ サンクス02 ▼
//
///////////////////////////////////////////////////*/
.thanks02 {
  margin: 0 0 8.75rem;
}
.thanks02 h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
.thanks02 p {
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  line-height: 2;
  margin: 3.75rem 0 0;
}
.thanks02 .contact_btn {
  margin: 3.75rem auto 0;
}

/*///////////////////////////////////////////////////
//
//            ▼ 404 ▼
//
///////////////////////////////////////////////////*/
.page404 .catch_copy {
  height: 100vh;
  min-height: 750px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page404 .catch_copy .ttl {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ 検索フォーム ▼
//
///////////////////////////////////////////////////*/
.search {
  width: 100%;
  border: 1px solid #ddd;
}
.search form .search_inner {
  display: flex;
  justify-content: space-between;
  height: 3rem;
  align-items: center;
}
.search form .search_inner .input {
  width: calc(100% - 3rem);
  height: 100%;
}
.search form .search_inner .input input {
  border: none;
  padding: 0 1rem;
  width: 100%;
  height: 100%;
}
.search form .search_inner .submit {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 3rem;
  height: 3rem;
  color: #000;
}
.search form .search_inner .submit span {
  font-size: 1.2rem;
}

.post_none {
  text-align: center;
}

/*///////////////////////////////////////////////////
//
//            ▼ IE対策 ▼
//
///////////////////////////////////////////////////*/

/*# sourceMappingURL=desktop.css.map */