@charset "UTF-8";
/*****************/
/*****************/
/*****************/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1em;
}

a {
  text-decoration: none;
  color: #333333;
}

li {
  list-style: none;
}

main {
  padding-top: 49px;
}

/************************************
************ナビゲーション*********
************************************/
nav {
  background-color: #ffffff;
  box-shadow: 0px 1px 3px rgba(51, 51, 51, 0.2784313725);
}

.nav-item {
  display: block;
  align-items: center;
  text-align: center;
}

@media (min-width: 992px) {
  nav {
    height: 80px;
  }
  .nav-item {
    display: flex;
  }
}
.nav-link {
  color: #333333;
  font-weight: bold;
}

.nav-contact {
  background-color: #51966F;
  color: #ffffff;
  padding: 1rem 3rem;
  border: 2px solid #51966F;
}
.nav-contact:hover {
  color: #51966F;
  background-color: #ffffff;
  transform: none;
}

.navbar-toggler-icon {
  background-image: url(../img/hamburger_menu.png);
}

.nav-current a {
  color: #51966F;
}

@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem #51966F;
}

/************************************
************ボタン*********
************************************/
.cmn_btn {
  font-size: 0.875rem;
  border: 1px solid #51966F;
  padding: 0.75rem 1.625rem;
  border-radius: 1.625rem;
}
.cmn_btn::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  padding-left: 0.75rem;
}
.cmn_btn:hover {
  background-color: #51966F;
  color: #ffffff;
}

@media (min-width: 992px) {
  .cmn_btn {
    font-size: 1rem;
  }
}
/************************************
************ページタイトル*********
************************************/
.ttl__wrapper {
  color: #51966F;
}
.ttl__wrapper .ttl__inner {
  display: flex;
  align-items: center;
}
.ttl__wrapper .ttl--en {
  font-size: 1.875rem;
  margin-bottom: 0;
  font-weight: bold;
}
.ttl__wrapper .ttl--border {
  width: 100%;
  height: 2px;
  background-color: #51966F;
  margin-left: 0rem;
}
.ttl__wrapper .ttl--ja {
  font-size: 1rem;
}

@media (min-width: 992px) {
  .ttl__wrapper .ttl--en {
    font-size: 5.375rem;
  }
  .ttl__wrapper .ttl--ja {
    font-size: 1.25rem;
  }
  .ttl__wrapper .ttl--ja02 {
    font-size: 2.5rem;
    width: 80vw;
  }
}
@media (max-width: 991px) {
  .ttl__wrapper .ttl--ja02 {
    font-size: 1.1rem;
    width: 80vw;
  }
}
/************************************
*共通フッター（お問い合わせ/サステナビリティ）*
************************************/
#cmnFooter .box {
  background-color: #F0F0F0;
  text-align: center;
  padding: 3.125rem 0.625rem;
}
#cmnFooter .box .ttl--en {
  font-weight: bold;
  font-size: 1.625rem;
  margin-bottom: 0;
}
#cmnFooter .box .ttl--en.contact::before {
  padding-right: 0.375rem;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
}
#cmnFooter .box .ttl--ja {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
  #cmnFooter .box {
    padding: 3.5rem 0.625rem;
  }
  #cmnFooter .box:nth-child(2) {
    margin-top: 0;
  }
  #cmnFooter .box .ttl--en {
    font-size: #333333;
  }
}
/************************************
*************アニメーション*************
************************************/
.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeIn.is-show {
  opacity: 1;
}

/************************************
*************別タブアイコン*************
************************************/
.link-other::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
}

/*****************/
/*****************/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 99;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 30px;
}

@media (min-width: 992px) {
  .slick-prev {
    left: -25px;
  }
  .slick-next {
    right: -25px;
  }
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  opacity: 1;
  color: white;
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #51966F;
}

.slick-prev:before {
  content: "←";
}

.slick-next:before {
  content: "→";
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-slide {
  width: 280px;
  position: relative;
  overflow: hidden;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*****************/
.section--space {
  margin-top: 3.75rem;
}

@media (min-width: 992px) {
  .section--space {
    margin-top: 4rem;
  }
}
.section__inner--mspace {
  margin-top: 2.5rem;
}

.section__inner--pspace {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

@media (min-width: 992px) {
  .section__inner--mspace {
    margin-top: 3rem;
  }
  .section__inner--pspace {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.top__ttl--en {
  font-size: 1.875rem;
  color: #51966F;
  font-weight: bold;
  position: relative;
  margin-bottom: 0;
}
.top__ttl--en::after {
  position: absolute;
  content: "";
  top: 50%;
  height: 1px;
  background-color: #51966F;
  margin-left: 1.75rem;
}

.top__ttl--ja {
  font-size: 1.25rem;
  color: #51966F;
}

/************************************
************メインビジュアル*********
************************************/
.mainVisual__wrapper {
  text-align: center;
  background-image: url(../img/top_sp.png);
  background-position: center;
  background-size: cover;
  height: calc(100vh - 81px);
  position: unset;
  top: 0;
  left: 0;
}
.mainVisual__wrapper .mainVisual__inner {
  width: 100%;
  position: unset;
  top: 0;
  left: 0;
  transform: unset;
  padding: 5rem 1rem 3rem 1rem;
}
.mainVisual__wrapper .main__logo {
  width: 20%;
}
.mainVisual__wrapper h1, .mainVisual__wrapper .txt {
  color: #ffffff;
  font-weight: bold;
  text-shadow: #333333 1px 0 10px;
}
.mainVisual__wrapper h1 {
  font-size: 2rem;
  text-shadow: #333333 1px 0 10px;
  margin: 1.75rem 0 6rem 0;
}
.mainVisual__wrapper h1 span {
  color: #51966F;
}

.mainVisual__wrapper02 {
  text-align: center;
  background-image: url(../img/vision_sp.png);
  background-position: center;
  background-size: cover;
  height: calc(100vh - 81px);
  position: unset;
  margin-top: 5vh;
  top: 0;
  left: 0;
}
.mainVisual__wrapper02 .mainVisual__inner {
  width: 40%;
  position: unset;
  top: 0;
  left: 0;
  transform: unset;
  padding: 20rem 1rem 3rem 5rem;
}
.mainVisual__wrapper02 .mainVisual__inner p br .sp_br {
  display: none;
}
.mainVisual__wrapper02 .main__logo {
  width: 20%;
}
.mainVisual__wrapper02 h1, .mainVisual__wrapper02 .txt {
  color: #333333;
  font-weight: bold;
}
.mainVisual__wrapper02 h1 {
  font-size: 2rem;
  text-shadow: #333333 1px 0 10px;
  margin: 1.75rem 0 6rem 0;
}
.mainVisual__wrapper02 h1 span {
  color: #51966F;
}

.mainVisual__wrapper03 {
  text-align: left;
  background-image: url(../img/philosophy_pc.png);
  background-position: center;
  background-size: cover;
  height: calc(100vh - 81px);
  position: unset;
  top: 0;
  left: 0;
}
.mainVisual__wrapper03 .mainVisual__inner {
  width: 100%;
  position: unset;
  top: 0;
  left: 0;
  transform: unset;
  padding: 5rem 1rem 3rem 1rem;
}
.mainVisual__wrapper03 .main__logo {
  width: 20%;
}
.mainVisual__wrapper03 h1, .mainVisual__wrapper03 .txt {
  color: #333;
  font-weight: bold;
}
.mainVisual__wrapper03 h1 {
  font-size: 2rem;
  text-shadow: #333333 1px 0 10px;
  margin: 1.75rem 0 6rem 0;
}
.mainVisual__wrapper03 h1 span {
  color: #51966F;
}

/* 小デバイス（320px 以上） */
@media (min-width: 320px) {
  .mainVisual__inner h1 {
    margin: 6rem 0 8rem 0;
  }
  .mainVisual__wrapper02 {
    text-align: left;
    background-image: url(../img/vision_tab.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 60vh;
    position: unset;
    margin-top: 0vh;
    top: 0;
    left: 0;
  }
  .mainVisual__wrapper02 .mainVisual__inner {
    width: 100%;
    padding: 6rem 1rem 3rem 1rem;
  }
  .mainVisual__wrapper02 .txt {
    font-size: 1rem;
  }
  .mainVisual__wrapper02 .sp_br {
    display: none;
  }
}
/* 小デバイス（430px 以上） */
@media (min-width: 430px) {
  .mainVisual__inner h1 {
    font-size: 2.5rem;
    margin: 7rem 0 8rem 0;
  }
  .mainVisual__wrapper02 {
    text-align: left;
    background-image: url(../img/vision_sp.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 110vh;
    position: unset;
    margin-top: 0vh;
    top: 0;
    left: 0;
  }
  .mainVisual__wrapper02 .mainVisual__inner {
    width: 100%;
    padding: 11rem 1rem 3rem 3rem;
  }
  .mainVisual__wrapper02 .mainVisual__inner .txt {
    font-size: 1.1rem;
  }
  .mainVisual__wrapper02 .mainVisual__inner .sp_br {
    display: none;
  }
}
/* 中デバイス（タブレット, 570px 以上） */
@media (min-width: 570px) {
  .mainVisual__wrapper02 {
    text-align: left;
    background-image: url(../img/vision_tab.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 70vh;
    position: unset;
    margin-top: 0vh;
    top: 0;
    left: 0;
  }
  .mainVisual__wrapper02 .mainVisual__inner {
    width: 100%;
    padding: 15vh 25vw;
  }
  .mainVisual__wrapper02 .mainVisual__inner .txt {
    font-size: 1rem;
  }
  .mainVisual__wrapper02 .mainVisual__inner .sp_br {
    display: none;
  }
}
/* 中デバイス（タブレット, 768px 以上） */
@media (min-width: 768px) {
  .mainVisual__wrapper {
    position: relative;
    top: 0;
    left: 0;
    height: 75vh;
  }
  .mainVisual__wrapper .mainVisual__inner {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .mainVisual__wrapper .main__logo {
    width: 5%;
  }
  .mainVisual__wrapper h1 {
    font-size: 3rem;
    margin: 1.75rem 0 4rem 0;
  }
  .mainVisual__wrapper h1 span {
    color: #51966F;
  }
  .mainVisual__wrapper .txt {
    font-size: 1.375rem;
    line-height: 2.5em;
    margin-bottom: 5rem;
    text-shadow: #333333 1px 0 10px;
  }
  .mainVisual__wrapper02 {
    text-align: left;
    background-image: url(../img/vision_tab.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 60vh;
    position: unset;
    margin-top: 0vh;
    top: 0;
    left: 0;
  }
  .mainVisual__wrapper02 .mainVisual__inner {
    width: 100%;
    padding: 10vw 30vh;
  }
  .mainVisual__wrapper02 .mainVisual__inner .txt {
    font-size: 1rem;
  }
  .mainVisual__wrapper02 .mainVisual__inner .sp_br {
    display: none;
  }
  .mainVisual__wrapper03 {
    position: relative;
    background-image: url(../img/philosophy_pc.png);
    top: 0;
    left: 0;
    height: 75vh;
  }
  .mainVisual__wrapper03 .mainVisual__inner {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .mainVisual__wrapper03 .main__logo {
    width: 5%;
  }
  .mainVisual__wrapper03 h1 {
    font-size: 3rem;
    margin: 1.75rem 0 4rem 0;
  }
  .mainVisual__wrapper03 h1 span {
    color: #51966F;
  }
  .mainVisual__wrapper03 .txt {
    font-size: 1.2rem;
    line-height: 2.5em;
    margin-bottom: 5rem;
    color: #333;
    padding-left: 10vw;
  }
}
/* 大デバイス（デスクトップ, 992px 以上） */
@media (min-width: 992px) {
  .mainVisual__wrapper {
    background-image: url(../img/top_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .mainVisual__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
  .mainVisual__wrapper02 {
    background-image: url(../img/vision_pc.png);
    height: 80vh;
    margin-top: 0vh;
    text-align: left;
  }
  .mainVisual__wrapper02 .mainVisual__inner {
    width: 30%;
    padding: 16rem 1rem 3rem 3rem;
  }
  .mainVisual__wrapper02 .mainVisual__inner .txt {
    font-size: 1.1rem;
  }
  .mainVisual__wrapper03 {
    background-image: url(../img/philosophy_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .mainVisual__wrapper03 .txt {
    font-size: 1.2rem;
    color: #333;
  }
}
/* 大デバイス（デスクトップ, 1200px 以上） */
@media (min-width: 1200px) {
  .mainVisual__wrapper {
    background-image: url(../img/top_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .mainVisual__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
  .mainVisual__wrapper02 {
    background-image: url(../img/vision_pc.png);
    height: 100vh;
    margin-top: 0vh;
    text-align: left;
  }
  .mainVisual__wrapper02 .mainVisual__inner {
    width: 38%;
    padding: 21rem 1rem 3rem 2rem;
  }
  .mainVisual__wrapper02 .mainVisual__inner .sp_br {
    display: block;
  }
  .mainVisual__wrapper02 .mainVisual__inner .txt {
    font-size: 1.2rem;
  }
  .mainVisual__wrapper03 {
    background-image: url(../img/philosophy_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .mainVisual__wrapper03 .txt {
    font-size: 1.4rem;
    color: #333;
  }
}
/* 大デバイス（デスクトップ, 1600px 以上） */
@media (min-width: 1600px) {
  .mainVisual__wrapper {
    background-image: url(../img/top_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .mainVisual__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
  .mainVisual__wrapper02 {
    background-image: url(../img/vision_pc.png);
    height: 110vh;
    margin-top: 0vh;
    text-align: left;
  }
  .mainVisual__wrapper02 .mainVisual__inner {
    width: 40%;
    padding: 30rem 1rem 3rem 5rem;
  }
  .mainVisual__wrapper02 .mainVisual__inner .sp_br {
    display: block;
  }
  .mainVisual__wrapper02 .mainVisual__inner .txt {
    font-size: 1.2rem;
  }
  .mainVisual__wrapper03 {
    background-image: url(../img/philosophy_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .mainVisual__wrapper03 .txt {
    font-size: 1.4rem;
    color: #333;
  }
}
/************************************
************エアコンビジュアル*********
************************************/
.aircon__wrapper {
  text-align: center;
  background-image: url(../img/aircon_sp.png);
  background-position: center;
  background-size: cover;
  height: calc(100vh - 81px);
  position: unset;
  top: 0;
  left: 0;
}
.aircon__wrapper .aircon__inner {
  width: 100%;
  position: unset;
  top: 0;
  left: 0;
  transform: unset;
  padding: 5rem 1rem 3rem 1rem;
}
.aircon__wrapper .main__logo {
  width: 20%;
}
.aircon__wrapper h1, .aircon__wrapper .txt {
  color: #ffffff;
  font-weight: bold;
  text-shadow: #333333 1px 0 10px;
}
.aircon__wrapper h1 {
  font-size: 2rem;
  text-shadow: #333333 1px 0 10px;
  margin: 1.75rem 0 6rem 0;
}
.aircon__wrapper h1 span {
  color: #51966F;
}


/* 小デバイス（320px 以上） */
@media (min-width: 320px) {
  .aircon__inner h1 {
    margin: 6rem 0 8rem 0;
  }
}
/* 小デバイス（430px 以上） */
@media (min-width: 430px) {
  .aircon__inner h1 {
    font-size: 2.5rem;
    margin: 7rem 0 8rem 0;
  }
  
}


/* 中デバイス（タブレット, 768px 以上） */
@media (min-width: 768px) {
  .aircon__wrapper {
    position: relative;
    top: 0;
    left: 0;
    height: 75vh;
  }
  .aircon__wrapper .aircon__inner {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .aircon__wrapper .main__logo {
    width: 5%;
  }
  .aircon__wrapper h1 {
    font-size: 3rem;
    margin: 1.75rem 0 4rem 0;
  }
  .aircon__wrapper h1 span {
    color: #51966F;
  }
  .aircon__wrapper .txt {
    font-size: 1.375rem;
    line-height: 2.5em;
    margin-bottom: 5rem;
    text-shadow: #333333 1px 0 10px;
  }
}
  
/* 大デバイス（デスクトップ, 992px 以上） */
@media (min-width: 992px) {
  .aircon__wrapper {
    background-image: url(../img/aircon_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .aircon__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/* 大デバイス（デスクトップ, 1200px 以上） */
@media (min-width: 1200px) {
  .aircon__wrapper {
    background-image: url(../img/aircon_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .aircon__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/* 大デバイス（デスクトップ, 1600px 以上） */
@media (min-width: 1600px) {
  .aircon__wrapper {
    background-image: url(../img/aircon_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .aircon__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/************************************
************蓄電ビジュアル*********
************************************/
.battery__wrapper {
  text-align: center;
  background-image: url(../img/battery_sp.png);
  background-position: center;
  background-size: cover;
  height: calc(100vh - 81px);
  position: unset;
  top: 0;
  left: 0;
}
.battery__wrapper .battery__inner {
  width: 100%;
  position: unset;
  top: 0;
  left: 0;
  transform: unset;
  padding: 5rem 1rem 3rem 1rem;
}
.battery__wrapper .main__logo {
  width: 20%;
}
.battery__wrapper h1, .battery__wrapper .txt {
  color: #ffffff;
  font-weight: bold;
  text-shadow: #333333 1px 0 10px;
}
.battery__wrapper h1 {
  font-size: 2rem;
  text-shadow: #333333 1px 0 10px;
  margin: 1.75rem 0 6rem 0;
}
.battery__wrapper h1 span {
  color: #51966F;
}
/* 小デバイス（320px 以上） */
@media (min-width: 320px) {
  .battery__inner h1 {
    margin: 6rem 0 8rem 0;
  }
}
/* 小デバイス（430px 以上） */
@media (min-width: 430px) {
  .battery__inner h1 {
    font-size: 2.5rem;
    margin: 7rem 0 8rem 0;
  }
  
}
/* 中デバイス（タブレット, 768px 以上） */
@media (min-width: 768px) {
  .battery__wrapper {
    position: relative;
    top: 0;
    left: 0;
    height: 75vh;
  }
  .battery__wrapper .battery__inner {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .battery__wrapper .main__logo {
    width: 5%;
  }
  .battery__wrapper h1 {
    font-size: 3rem;
    margin: 1.75rem 0 4rem 0;
  }
  .battery__wrapper h1 span {
    color: #51966F;
  }
  .battery__wrapper .txt {
    font-size: 1.375rem;
    line-height: 2.5em;
    margin-bottom: 5rem;
    text-shadow: #333333 1px 0 10px;
  }
}
  
/* 大デバイス（デスクトップ, 992px 以上） */
@media (min-width: 992px) {
  .battery__wrapper {
    background-image: url(../img/battery_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .battery__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/* 大デバイス（デスクトップ, 1200px 以上） */
@media (min-width: 1200px) {
  .battery__wrapper {
    background-image: url(../img/battery_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .battery__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/* 大デバイス（デスクトップ, 1600px 以上） */
@media (min-width: 1600px) {
  .battery__wrapper {
    background-image: url(../img/battery_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .battery__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/************************************
************AIデータセンタービジュアル*********
************************************/
.ai__wrapper {
  text-align: center;
  background-image: url(../img/ai_sp.png);
  background-position: center;
  background-size: cover;
  height: calc(100vh - 81px);
  position: unset;
  top: 0;
  left: 0;
}
.ai__wrapper .ai__inner {
  width: 100%;
  position: unset;
  top: 0;
  left: 0;
  transform: unset;
  padding: 5rem 1rem 3rem 1rem;
}
.ai__wrapper .main__logo {
  width: 20%;
}
.ai__wrapper h1, .ai__wrapper .txt {
  color: #ffffff;
  font-weight: bold;
  text-shadow: #333333 1px 0 10px;
}
.ai__wrapper h1 {
  font-size: 2rem;
  text-shadow: #333333 1px 0 10px;
  margin: 1.75rem 0 6rem 0;
}
.ai__wrapper h1 span {
  color: #51966F;
}
/* 小デバイス（320px 以上） */
@media (min-width: 320px) {
  .ai__inner h1 {
    margin: 6rem 0 8rem 0;
  }
}
/* 小デバイス（430px 以上） */
@media (min-width: 430px) {
  .ai__inner h1 {
    font-size: 2.5rem;
    margin: 7rem 0 8rem 0;
  }
  
}
/* 中デバイス（タブレット, 768px 以上） */
@media (min-width: 768px) {
  .ai__wrapper {
    position: relative;
    top: 0;
    left: 0;
    height: 75vh;
  }
  .ai__wrapper .ai__inner {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .ai__wrapper .main__logo {
    width: 5%;
  }
  .ai__wrapper h1 {
    font-size: 3rem;
    margin: 1.75rem 0 4rem 0;
  }
  .ai__wrapper h1 span {
    color: #51966F;
  }
  .ai__wrapper .txt {
    font-size: 1.375rem;
    line-height: 2.5em;
    margin-bottom: 5rem;
    text-shadow: #333333 1px 0 10px;
  }
}
  
/* 大デバイス（デスクトップ, 992px 以上） */
@media (min-width: 992px) {
  .ai__wrapper {
    background-image: url(../img/ai_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .ai__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/* 大デバイス（デスクトップ, 1200px 以上） */
@media (min-width: 1200px) {
  .ai__wrapper {
    background-image: url(../img/ai_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .ai__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/* 大デバイス（デスクトップ, 1600px 以上） */
@media (min-width: 1600px) {
  .ai__wrapper {
    background-image: url(../img/ai_pc.png);
    height: calc(100vh - 81px);
    margin-top: 0vh;
  }
  .ai__wrapper .txt {
    font-size: 1.75rem;
    text-shadow: #333333 1px 0 10px;
  }
}
/************************************
************【TOP】ニュース*********
************************************/
#topNews .news__wrapper--image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 */
  overflow: hidden;
  aspect-ratio: 16/9;
}
#topNews .news__wrapper--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比保持 */
}
#topNews .top__ttl--en::after {
  width: calc(100% - 9em);
}
#topNews .news__content {
  font-size: 1rem;
}
#topNews .news__content .date {
  color: #9696A5;
  margin-top: 0rem;
  margin-bottom: 0;
}
#topNews .news__content .ttl {
  font-weight: bold;
  line-height: 2em;
  margin-top: 0.625rem;
  margin-bottom: 1.625rem;
}
#topNews .bgcolor01 {
  background-color: #acf5be;
}
#topNews .bgcolor02 {
  background-color: #eca9d2;
}
#topNews .bgcolor03 {
  background-color: #b38585;
}

@media (min-width: 768px) {
  #topNews .news__image-wrapper {
    padding-top: 60%; /* 4:3 比率調整してOK */
  }
}
@media (min-width: 992px) {
  #topNews .top__ttl--en::after {
    width: calc(100% - 8em);
  }
}
/************************************
************【TOP】ビジネス*********
************************************/
#topBusiness .news__wrapper--image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 */
  overflow: hidden;
  aspect-ratio: 16/9;
}
#topBusiness .news__wrapper--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比保持 */
}
#topBusiness .top__ttl--en::after {
  width: calc(100% - 9em);
}
#topBusiness .news__content {
  font-size: 1rem;
}
#topBusiness .news__content .date {
  color: #333;
  font-weight: bold;
  margin-top: 0rem;
  margin-bottom: 0;
}
#topBusiness .news__content .ttl {
  font-weight: normal;
  line-height: 2em;
  margin-top: 0.625rem;
  margin-bottom: 1.625rem;
}
#topBusiness .bgcolor01 {
  background-color: rgba(216, 239, 253, 0.5);
  border: 1px solid #d8effd;
  padding: 20px;
  border-radius: 20px;
  margin: 10px;
}
#topBusiness .bgcolor02 {
  background-color: rgba(179, 135, 71, 0.5);
  border: 1px solid #b38747;
  padding: 20px;
  border-radius: 20px;
  margin: 10px;
}
#topBusiness .bgcolor03 {
  background-color: rgba(233, 135, 136, 0.5);
  border: 1px solid #e98788;
  padding: 20px;
  border-radius: 20px;
  margin: 10px;
}

@media (min-width: 768px) {
  #topNews .news__image-wrapper {
    padding-top: 60%; /* 4:3 比率調整してOK */
  }
}
@media (min-width: 992px) {
  #topNews .top__ttl--en::after {
    width: calc(100% - 8em);
  }
}
/************************************
************【ボタン】*********
************************************/
.container .bggreen {
  background-image: url(../img/bggreen.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem;
}
.container .bgblue {
  background-image: url(../img/bgblue.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem;
}
.container .ttl {
  font-weight: bold;
}

/************************************
************【TOP】サービス*********
************************************/
#topService {
  background-color: #51966F;
}
#topService .top__ttl--en {
  color: #ffffff;
}
#topService .top__ttl--en::after {
  background-color: #ffffff;
  width: calc(100% - 5em);
}
#topService .top__ttl--ja {
  color: #ffffff;
}
#topService .service__inner {
  background-color: #ffffff;
}
#topService .service__content {
  min-height: 250px; /* スマホ用の最小高さ */
  padding: 2rem 1rem;
  text-align: left;
}
#topService .service__content .ttl {
  font-weight: bold;
  font-size: 1.375rem;
}
#topService .service__content .txt {
  line-height: 2em;
  margin: 1.625rem 0 0 0;
}
#topService img {
  width: 100%;
}

@media (min-width: 992px) {
  #topService .top__ttl--en::after {
    width: calc(100% - 4em);
  }
  #topService .service__content {
    min-height: 350px; /* PC用の最小高さ */
    padding: 3rem 2rem;
  }
  #topService .service__content .txt {
    margin: 1.625rem 0 3.125rem 0;
  }
}
/************************************
************カンパニーページ*********
************************************/
#company .company__wrapper {
  width: 100%;
}
#company .company__wrapper th,
#company .company__wrapper td {
  padding: 20px 15px;
  border-bottom: 1px solid #c7c7c7;
}
#company .company__wrapper th {
  font-weight: normal;
  width: 30%;
  white-space: nowrap;
}
#company .company__wrapper td {
  width: 70%;
}
#company .company__wrapper .txt__indent {
  font-size: 14px;
  padding-left: 0;
}
#company .company__wrapper .txt__indent li {
  text-indent: -1em;
  padding-left: 1em;
}
#company .map__wrapper iframe {
  width: 100%;
  aspect-ratio: 4/3;
}
#company .access__wrapper .access__inner th,
#company .access__wrapper .access__inner td {
  padding: 20px 5px;
  white-space: nowrap;
}
#company .access__wrapper .access__inner th {
  font-weight: normal;
  width: 30%;
}
#company .access__wrapper .access__inner td {
  font-size: 14px;
  width: 70%;
}
#company .box1 {
  box-sizing: border-box;
  text-align: left;
  line-height: 40px;
  font-size: 2rem;
  padding: 0rem 4rem;
  width: 100%;
}
#company .box2 {
  box-sizing: border-box;
  text-align: center;
  line-height: 20px;
  font-size: 2rem;
  padding: 2rem 2rem 2rem 2rem;
  background-image: url(../img/harada.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 30vh;
  margin-top: 4vh;
}
#company .box3 {
  box-sizing: border-box;
  text-align: left;
  line-height: 30px;
  font-size: 1rem;
  color: #333;
  padding: 0rem 3rem 6rem 3rem;
}
#company .greeting {
  display: flex;
}
#company .greet {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 5vh;
  margin-bottom: 5vh;
}
#company .greet__cont {
  font-size: 1.5rem;
}
#company .geet__exe {
  font-size: 1.2rem;
}
#company .f__link {
  font-size: 0.9rem;
  text-align: right;
  margin-top: 1vh;
}
#company .name {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  margin-top: 6vh;
}
#company .harada {
  display: block;
  margin-bottom: 5vh;
}

@media (min-width: 768px) {
  #company .access__wrapper {
    position: relative;
    top: 0;
    left: 0;
  }
  #company .access__wrapper .access__inner {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
  }
  #company .access__wrapper .access__inner th,
  #company .access__wrapper .access__inner td {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  #company .company__wrapper th,
  #company .company__wrapper td {
    padding: 50px 5px;
  }
  #company .company__wrapper th {
    white-space: unset;
  }
  #company .company__wrapper li {
    line-height: 2em;
  }
  #company .company__wrapper ul {
    font-size: unset;
  }
  #company .access__wrapper .access__inner td {
    font-size: unset;
  }
  #company .box1 {
    width: 60%;
  }
  #company .box2 {
    box-sizing: border-box;
    text-align: center;
    line-height: 20px;
    font-size: 2rem;
    padding: 2rem 2rem 2rem 2rem;
    background-image: url(../img/harada.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 40vh;
    margin-top: 4vh;
    width: 40%;
  }
  #company .harada {
    display: flex;
  }
}
/************************************
************リクルートページ*********
************************************/
#recruit .recruit__wrapper th,
#recruit .recruit__wrapper td {
  padding: 15px 10px;
}
#recruit .recruit__wrapper th {
  font-weight: normal;
  width: 20%;
  white-space: nowrap;
  font-weight: bold;
  vertical-align: top;
}
#recruit .recruit__wrapper td {
  width: 80%;
}
#recruit .recruit__wrapper .recruit__txt {
  margin: 40px 0 0 5px;
}
@media (min-width: 992px) {
  #recruit .recruit__wrapper th,
  #recruit .recruit__wrapper td {
    padding: 25px 5px;
  }
  #recruit .recruit__wrapper th {
    white-space: unset;
  }
}

/************************************
************エアコンページ*********
************************************/
#aircon .news__wrapper--image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 */
  overflow: hidden;
  aspect-ratio: 16/9;
}
#aircon .news__wrapper--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比保持 */
}
#aircon .top__ttl--en::after {
  width: calc(100% - 9em);
}
#aircon .news__content {
  font-size: 1rem;
}
#aircon .news__content .date {
  color: #9696A5;
  margin-top: 0rem;
  margin-bottom: 0;
}
#aircon .news__content .ttl {
  font-weight: bold;
  line-height: 2em;
  margin-top: 0.625rem;
  margin-bottom: 1.625rem;
}
#aircon .bgcolor01 {
  background-color: #acf5be;
}
#aircon .bgcolor02 {
  background-color: #eca9d2;
}
#aircon .bgcolor03 {
  background-color: rgba(216, 239, 253, 0.5);
}

@media (min-width: 370px) {
  #aircon .news__image-wrapper {
    padding-top: 60%; /* 4:3 比率調整してOK */
  }
  #aircon .box3 {
    box-sizing: border-box;
    text-align: left;
    line-height: 30px;
    font-size: 1.2rem;
    color: #333;
    padding: 2rem 1rem 4rem 1rem;
  }
  #aircon .box4 {
    box-sizing: border-box;
    text-align: left;
    line-height: 30px;
    font-size: 1rem;
    color: #333;
    padding: 2rem 1rem 4rem 1rem;
  }
}
@media (min-width: 768px) {
  #aircon .news__image-wrapper {
    padding-top: 60%; /* 4:3 比率調整してOK */
  }
  #aircon .box3 {
    box-sizing: border-box;
    text-align: left;
    line-height: 30px;
    font-size: 1.2rem;
    color: #333;
    padding: 2rem 3rem 4rem 3rem;
  }
  #aircon .box4 {
    box-sizing: border-box;
    text-align: left;
    line-height: 30px;
    font-size: 1rem;
    color: #333;
    padding: 2rem 3rem 4rem 3rem;
  }
}
@media (min-width: 992px) {
  #aircon .top__ttl--en::after {
    width: calc(100% - 8em);
  }
  #aircon .box3 {
    box-sizing: border-box;
    text-align: left;
    line-height: 30px;
    font-size: 1.2rem;
    color: #333;
    padding: 5rem 3rem 2rem 3rem;
  }
  #aircon .box4 {
    box-sizing: border-box;
    text-align: left;
    line-height: 30px;
    font-size: 1rem;
    color: #333;
    padding: 5rem 3rem 2rem 3rem;
  }
}
/************************************
************サービスページ*********
************************************/
#service .img__wrapper {
  padding: 1.875rem 0;
}
#service .img__wrapper img {
  width: 80%;
}
#service .txt__wrapper {
  position: unset;
}
#service .txt__wrapper .txt__inner {
  position: unset;
  transform: unset;
  padding: 1.875rem 0;
}
#service .ttl {
  font-size: 1.375rem;
  font-weight: bold;
}
#service .ttl02 {
  font-size: 1rem;
  font-weight: normal;
  color: #51966F;
}
#service .txt {
  margin: 1rem 0 0 0;
}

@media (min-width: 768px) {
  #service .txt__wrapper .txt__inner {
    width: 100%;
    padding: 0 1rem;
  }
  #service .txt {
    margin: 2.375rem 0;
    text-align: left;
  }
  #service .txt__wrapper {
    position: relative;
    top: 0;
    left: 0;
  }
  #service .txt__wrapper .txt__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 992px) {
  #service .img__wrapper img {
    width: inherit;
  }
}
/************************************
************フィロソフィーページ*********
************************************/
#philosophy .message__wrapper {
  padding-top: 0px;
}
#philosophy .message__wrapper .message__inner--txt {
  line-height: 2em;
  text-align: left;
}
#philosophy .message__wrapper .message__inner--txt .message {
  margin-bottom: unset;
}
#philosophy .message__wrapper .message__inner--txt .name {
  text-align: right;
  line-height: normal;
}
#philosophy .message__wrapper .message__inner--txt .name p {
  margin-bottom: 0.5rem;
}
#philosophy .message__wrapper .message__inner--img img {
  width: 100%;
}
#philosophy .philosophy__wrapper .philosophy__inner--txt {
  line-height: 2em;
  text-align: left;
}
#philosophy .career__wrapper .career__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#philosophy .career__wrapper .career__inner dt {
  text-align: left;
  width: 6.5em;
  padding: 0.5em 1em 0.5em 0em;
  position: relative;
}
#philosophy .career__wrapper .career__inner dt::after {
  content: "●";
  position: absolute;
  right: -0.55em;
  top: 5px;
  font-size: 1.375rem;
  color: #51966F;
}
#philosophy .career__wrapper .career__inner dd {
  width: calc(100% - 6.5em);
  padding: 0.5em 0em 3em 1.5em;
  border-left: 1px solid #51966F;
  text-align: left;
  margin-bottom: 0;
}
#philosophy .career__wrapper .career__inner dd h2 {
  font-size: 1.375rem;
  font-weight: bold;
  margin: 0 0 0.3125rem;
}

@media (min-width: 768px) {
  #philosophy .message__wrapper {
    background-color: #d4efff;
    position: relative;
    top: 0;
    left: 0;
    padding-top: 2.5rem;
  }
  #philosophy .message__wrapper .message__inner--txt {
    line-height: 2.5em;
  }
  #philosophy .message__wrapper .message__inner--img {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 40%;
  }
  #philosophy .message__wrapper .message__inner--img img {
    width: 100%;
  }
  #philosophy .philosophy__wrapper .philosophy__inner--txt {
    line-height: 2.5em;
  }
  #philosophy dd {
    width: calc(100% - 8.5em);
    padding: 0.5em 2em 3em;
  }
}
@media (min-width: 992px) {
  #philosophy .message__wrapper .message__inner--txt {
    line-height: 3.75em;
  }
  #philosophy .message__wrapper .message__inner--img img {
    width: auto;
  }
  #philosophy .philosophy__wrapper .philosophy__inner--txt {
    line-height: 3.75em;
  }
}
/************************************
************ニュース一覧ページ*********
************************************/
#news .date {
  color: #9696A5;
}
#news .ttl {
  font-weight: bold;
  color: #333333;
}
#news .page--links {
  text-align: center;
}
#news .page-numbers {
  padding: 0 1rem;
}
#news img {
  width: 100%;
  height: auto;
}
#news .news__wrapper .news__wrapper--image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 */
  overflow: hidden;
  aspect-ratio: 16/9;
}
#news .news__wrapper .news__wrapper--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比保持 */
}
#news .news__wrapper:last-child {
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
#news .news__wrapper .ttl {
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  #news .news__wrapper {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  #news .news__wrapper .ttl {
    font-size: 1.5rem;
  }
}
/************************************
************ニュース詳細ページ*********
************************************/
#newsDetail .box {
  box-shadow: 2px 2px 7px #ededf3;
  padding: 1rem 1rem 3rem 1rem;
}
#newsDetail .news__wrapper--image {
  width: 100%;
  text-align: center;
  margin-bottom: 1.875rem;
  position: relative;
  padding-top: 56.25%; /* 16:9比率 */
  overflow: hidden;
  aspect-ratio: 16/9;
}
#newsDetail .news__wrapper--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比保持 */
}
#newsDetail .news__wrapper {
  width: 100%;
  margin: 0 auto;
}
#newsDetail .date {
  color: #9696A5;
  margin-bottom: 1.875rem;
}
#newsDetail .ttl {
  font-weight: bold;
  margin-bottom: 1.875rem;
  padding: 0 1rem;
}
#newsDetail .txt {
  font-size: 1rem;
  line-height: 1.5em;
  margin-bottom: 1.875rem;
  padding: 0 1rem;
}
#newsDetail img {
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  #newsDetail .box {
    padding: 5rem;
  }
  #newsDetail .news__wrapper--image {
    margin: 0 auto;
    margin-bottom: 3.375rem;
  }
  #newsDetail .news__wrapper {
    width: 60%;
    margin: 0 auto;
  }
  #newsDetail .date {
    color: #9696A5;
    margin-bottom: 3.375rem;
  }
  #newsDetail .ttl {
    margin-bottom: 3.375rem;
    padding: 0em;
  }
  #newsDetail .txt {
    font-size: 1rem;
    line-height: 1.5em;
    margin-bottom: 3.375rem;
    padding: 0em;
  }
}
/************************************
************コンタクトページ*********
************************************/
#contact .contact__inner--txt {
  border-top: 1px solid #9696A5;
  border-bottom: 1px solid #9696A5;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
#contact .contact__inner--txt p {
  line-height: 2em;
  margin-bottom: 0;
}
#contact dl {
  display: block;
}
#contact dt {
  width: 100%;
  letter-spacing: 0.05em;
  padding: 0.6rem 0;
}
#contact dd {
  width: 100%;
}
#contact .required::before {
  content: "必須";
  background-color: #d61110;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-right: 0.375rem;
}
#contact .any::before {
  content: "任意";
  background-color: #666;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-right: 0.375rem;
}
#contact input,
#contact select,
#contact textarea {
  padding: 0.75rem 1rem;
  width: 100%;
  border: 1px solid #9696a5;
}
#contact input[type=checkbox] {
  width: auto;
}
#contact input[type=submit] {
  font-weight: bold;
  margin-top: 1rem;
}
#contact .contact_btn {
  background-color: #51966F;
  color: #ffffff;
  border: 2px solid #51966F;
}
#contact .contact_btn:hover {
  color: #51966F;
  background-color: #ffffff;
}
#contact .privacy__wrapper {
  background-color: #faf7ce;
  text-align: center;
  padding: 1rem;
  line-height: 2em;
}
#contact .privacy__wrapper a {
  font-size: 0.875rem;
}
#contact .privacy__wrapper a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f14d";
  padding-left: 0.5rem;
}
#contact .submit__wrapper {
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  #contact .contact__inner--txt {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }
  #contact .contact__inner--txt p {
    line-height: 3em;
  }
  #contact input[type=submit] {
    width: 40%;
  }
}
@media (min-width: 992px) {
  #contact dl {
    display: flex;
  }
  #contact dt {
    width: 35%;
    flex: 0 0 auto;
  }
  #contact dd {
    width: 70%;
  }
}
/************************************
********プライバシーポリシーページ*****
************************************/
#privacypolicy h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
#privacypolicy h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
#privacypolicy .content__wrapper {
  margin-top: 3.375rem;
}
#privacypolicy table thead {
  background-color: #51966F;
  color: #ffffff;
  text-align: center;
}
#privacypolicy table th,
#privacypolicy table td {
  padding: 1rem 0.5rem;
  border: 1px solid black;
}
#privacypolicy table td:first-child {
  text-align: center;
}

/************************************
************404ページ*********
************************************/
#notFound {
  color: #51966F;
  text-align: center;
}
#notFound .ttl {
  font-size: 5.375rem;
}
#notFound .txt {
  padding: 1rem 0;
}
#notFound .txt p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
#notFound .txt p:nth-child(2) {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  #notFound {
    color: #51966F;
    text-align: unset;
  }
  #notFound .ttl {
    font-size: 12.5rem;
  }
  #notFound .txt {
    padding: 2rem 0;
  }
  #notFound .txt p {
    font-size: 1.875rem;
  }
}
/************************************
************フッター*********
************************************/
#footer {
  background-color: #51966F;
  padding: 3.375rem 0;
  text-align: center;
  color: #ffffff;
}
#footer a {
  color: #ffffff;
  display: block;
}/*# sourceMappingURL=style.css.map */