@charset "UTF-8";
/*
Theme Name: 株式会社 TAKANO ESTATE, 株式会社DEVELOPMENT CLOUD
Description: 株式会社 TAKANO ESTATE, 株式会社DEVELOPMENT CLOUD テンプレート
Version: 1.0
*/

/* ========== common ========== */
html {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
  font-weight: 300;
  z-index: 1;
}

@media screen and (min-width:1080px) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width:751px) and (max-width: 1079px) {
  html {
    font-size: 0.925vw;
  }
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.333vw;
  }
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sp_only {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }
}
/* ========== / common ========== */



/* ========== flex ========== */
.flex_wrap {
  display: flex;
}

.flex_col {
  width: 48%;
}

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

  .flex_col {
    width: 100%;
  }
}
/* ========== / flex ========== */



/* ========== header ========== */
.header_wrap {
  position: fixed;
  top: 0;
  background-color: #fff;
  border-bottom: #b3b3b3 solid 0.2rem;
  width: 100%;
  z-index: 999;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 5rem;
  height: 8rem;
  max-width: 1200px;
}

.header_inner .header_logo {
  width: 47rem;
}

.header_inner .header_nav_pc {
  margin-left: 5rem;
  width: 60rem;
}

.header_inner .header_nav_pc ul {
  display: flex;
  justify-content: space-between;
}

.header_inner .header_nav_pc a {
  position: relative;
  font-size: 1.4rem;
}

.header_inner .header_nav_pc a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 0.2rem;
  background: #004795;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.header_inner .header_nav_pc a:hover::after {
  transform: scale(1, 1);
}

.header_inner .header_nav_sp {
  display: none;
}

@media screen and (max-width: 950px) {
  .header_inner {
    padding: 0 2rem;
  }

  .header_inner .header_logo {
    width: 43.2rem;
  }

  .header_inner .header_nav_pc {
    display: none;
  }

  .header_inner .header_nav_sp {
    display: block;
  }

  .header_nav_btn{
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .header_nav_btn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 0.2rem;
    background: #666666;
    width: 45%;
  }
  .header_nav_btn span:nth-of-type(1) {
    top:15px;
  }
  .header_nav_btn span:nth-of-type(2) {
    top:23px;
  }
  .header_nav_btn span:nth-of-type(3) {
    top:31px;
  }
  .header_nav_btn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .header_nav_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header_nav_btn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/* header_nav_open */
.header_nav_open {
  position: fixed;
  top: 8rem;
  left: 0;
  background-color: #fff;
  width: 100%;
  transform: translateY(-60rem);
  transition-duration : .6s;
  z-index: 2;
}
.header_nav_open.active {
  transform: translateY(0);
}
.header_nav_open ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: #cccccc solid 0.2rem;
  font-size: 3.3rem;
  padding: 2rem 3rem;
}
.header_nav_open ul li::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  margin-left: 1rem;
  height: 0.6em;
  width: 0.6em;
  border: 0.3rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
}
/* / header_nav_open */
/* ========== / header ========== */




/* ========== footer ========== */
footer {
  border-top: #b3b3b3 solid 0.2rem;
}
.footer_inner {
  padding: 4rem 3rem;
  max-width: 1000px;
  margin: auto;
}

.footer_logo {
  width: 50rem;
}

.footer_txt {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  font-size: 1.7rem;
  margin-top: 2rem;
}

.footer_copy {
  font-size: 1.2rem;
}

@media screen and (max-width: 750px) {
  .footer_logo {
    margin: auto;
    width: 54rem;
  }

  .footer_txt {
    flex-direction: column;
    align-items: center;
  }
}
/* ========== / footer ========== */





/* ========== 共通テキスト ========== */
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 6.8rem;
  font-weight: 500;
  padding-top: 1.5em;
  margin-bottom: 2.5rem;
  text-align: center;
}

h2 span {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 2em;
}

h3 {
  font-size: 2.5rem;
}

p {
  font-size: 2.0rem;
}

@media screen and (max-width: 750px) {
  p {
    font-size: 2.4rem;
  }
}




/* ========== common fv ========== */
.fv {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5.5rem;
  color: #fff;
}

.fv_bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 45rem;
  width: 78%;
}

.fv_blue {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 38rem;
  width: 48%;
  background-color: rgba(0,71,149,0.90);
}

.fv_txt_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv_txt {
  position: absolute;
  top: 6rem;
  left: 4rem;
}

.fv h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 6.27rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.fv h1 span {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  font-size: 2.44rem;
  font-weight: bold;
  line-height: 2em;
}

.fv p {
  position: relative;
  left: -4rem;
  padding-left: 4rem;
  padding-right: 2rem;
  font-size: 2.3rem;
  border-top: #fff solid 0.2rem;
  padding-top: 1rem;
  margin-top: 2rem;
  letter-spacing: 0.2em;
}


@media screen and (max-width: 750px) {
  .fv {
    padding-bottom: 26rem;
  }

  .fv_bg {
    width: 100%;
  }

  .fv_blue {
    width: 87%;
  }
}



/* ========== common btn ========== */
.com_btn {
  position: relative;
  display: block;
  border: #000 solid 0.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.5rem;
  width: 27.2rem;
  letter-spacing: 0.2em;
  text-align: center;
}

.com_btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -17%;
  transform: translateY(-50%);
  width: 8rem;
  height: 0.2rem;
  background-color: #000;
  transition: 0.4s;
}
.com_btn:hover:after {
  right: -5%;
}

@media screen and (max-width: 750px) {
  .com_btn {
    font-size: 2.3rem;
    padding: 2.4rem;
    width: 36rem;
  }
}



/* ========== anchor_links ========== */
.anchor_links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: auto;
  max-width: 108rem;
}

.anchor_link {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  border: 0.3rem solid #000;
  padding: 0.8rem 1rem 1rem;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.anchor_link::after {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-top: 1.5rem solid black;
}

.anchor_link:hover {
  background-color: #000;
  color: #fff;
}

.anchor_link:hover::after {
  border-top: 1.5rem solid #fff;
}

.work_top_anchor,
.company_top_anchor {
  padding: 5rem;
}

.work_top_anchor p {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 1.5rem 0;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .anchor_links {
    flex-wrap: wrap;
  }

  .anchor_link {
    font-size: 2.6rem;
    padding: 1.4rem 1rem 1.6rem;
  }

  .work_top_anchor p {
    font-size: 2.9rem;
  }

  .work_top_anchor .works_links {
    width: 80%;
  }

  .company_top_anchor .anchor_links {
    column-gap: 2rem;
    row-gap: 1rem;
  }
  .company_top_anchor .anchor_link {
    width: 48%;
  }
}

