@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

main{
  overflow: visible;
}

/* ヘッダー */
.header{
  top: -70px;
}
.header-inner{
  width: 100%;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.header-inner h1{
  display: none;
}
.logo{
  opacity: 1;
}
.nav{
  overflow: visible;
  margin-left: 200px;
}
.nav ul{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li{
  list-style-position: unset;
  list-style-type: none;
  padding-left: 0;
}
.nav a{
  text-decoration: none;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.nav a:hover{
  opacity: 0.7;
}
.entry-btn{
  height: 100%;
}
.entry-btn a{
  min-width: 150px;
  height: 100%;
  background: #2C74DA;
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  font-weight: 600;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.entry-btn a:hover{
  opacity: 0.7;
}

/* ハンバーガー */
.hamburger{
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer; 
  z-index: 1001;
}
.hamburger span{
  display: block;
  height: 3px;
  background: #a6b9c1;
  transition: 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1){
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2){
  opacity: 0;
}
.hamburger.active span:nth-child(3){
  transform: translateY(-7.5px) rotate(-45deg);
}
@media screen and (max-width: 900px){
.nav{
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease;
    margin-left: 0;
  }
.nav.active{
    display: flex;
    visibility: visible;
    opacity: 1;
  }
.nav ul{
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    background: rgba(46,68,78,0.9);
    height: 100%;
    justify-content: center;
    text-align: center;
  }
  .nav a{
    color: #fff;
  }
  .hamburger{
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }
}

/* 本来のヘッダー非表示*/
.DEVELOP779{
  display: none!important;
}
header#pattern2>nav{
  display: none!important;
}

/* MV非表示 */
#lv_outer{
  display: none!important;
}

/* ボタン装飾 */
.contents_btn01{
  overflow: visible;
}
.contents_btn01 a{
  min-width: 280px;
  transition: .3s;
  text-align: center;
  border-radius: 30px;
  background: #fff;
  font-size: 1.55rem;
  padding: 5px!important;
  border: 2px solid #2C74DA;
  color: #2C74DA!important;
  font-weight: bold;
  box-shadow: 5px 5px 0px 0px rgb(44, 116, 218, 50%);
  position: relative;
}
.contents_btn01 a::before{
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: #2C74DA;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.contents_btn01 a::after{
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #2C74DA;
  right: 10px;
  top: 45%;
  transform: translateY(-50%) rotate(45deg);
}

/* ビジョン&ミッション */
#vision+section{
  margin-top: 70px;
}
#vision+section .inner_item_txt h3{
  font-size: 11rem;
  font-size: clamp(10rem, 6.9vw, 5rem);
  font-weight: 900;
  color: #fff;
  transform: skew(-10deg);
  opacity: 0.8;
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 30px;
}
#vision+section .inner_item_txt .subtitle{
  margin-top: 20px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}
#vision+section .inner_item_txt .text{
  color: #fff;
  margin-top: 40px;
  font-weight: 400;
}

/* 代表メッセージ */
#message+section{
  position: relative;
}
#message+section::before{
  content: '';
  position: absolute;
  width: 41.5vw;
  height: 3px;
  background: #2C74DA;
  right: 0;
  top: 105px;
}
#message+section .wrapper_item{
  display: flex;
  gap: 80px;
  overflow: visible;
}
#message+section .wrapper_item::after{
  content: none;
}
#message+section .inner_item_img{
  margin: 0;
  width: 50%;
  width: calc((100% - 80px) / 2);
  flex-basis: 100%;
  max-width: 100%;
  box-shadow: 20px 20px 0px 0px rgb(44, 116, 218, 1);
}
#message+section .inner_item_txt{
  width: 50%;
  width: calc((100% - 80px) / 2);
  flex-basis: 100%;
  max-width: 100%;
}
#message+section .heading{
  width: 100%;
  border-bottom: none;
}
#message+section .heading::before{
  /* width: 150%;
  background: #2C74DA;
  height: 2px;
  bottom: 53px;
  left: 15%;
  left: 0; */
  content: none;
}
#message+section .heading.block_header_2 .h{
  font-size: clamp(4rem, 3.47vw, 5rem)!important;
  font-weight: 900;
  color: #2C74DA;
  transform: skew(-10deg);
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  text-align: end;
  display: block;
  white-space: nowrap;
}
#message+section .heading.block_header_2 p{
  font-size: 3rem;
  color: #2C74DA;
  text-align: end;
}
#message+section .text02{
  margin-top: 40px;
}

/* 会社概要 */
#company_title+section{
  position: relative;
}
#company_title+section::before{
  content: '';
  position: absolute;
  width: 27vw;
  height: 3px;
  background: #2C74DA;
  top: 107px;
  left: 0;
}
#company_title+section .inner_item_txt .title span{
  font-size: 5rem;
  font-weight: 900;
  color: #2C74DA;
  transform: skew(-10deg);
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  display: inline-block;
}
#company_title+section .inner_item_txt .sub_title{
  font-size: 3rem;
  color: #2C74DA;
}
#company+div .heading.block_header_4 .h{
  display: none;
}
#company+div .inner_item_txt dl{
  border: none!important;
  display: flex;
  gap: 40px;
}
#company+div .inner_item_txt dl dt{
  border-top: 2px solid #2C74DA;
  color: #2C74DA;
  padding: 20px;
}
#company+div .inner_item_txt dl:last-of-type dt{
  border-bottom: 2px solid #2C74DA;
}
#company+div .inner_item_txt dl dd{
  padding: 20px;
  width: 100%;
  border-top: 2px solid #C6C6C6;
}
#company+div .inner_item_txt dl:last-of-type dd{
  border-bottom: 2px solid #C6C6C6;
}
#company+div .inner_item_txt dl:nth-of-type(4) dd div{
  display: flex;
}
#company+div .inner_item_txt dl:nth-of-type(4) dd div p:nth-child(1){
  min-width: 170px;
}
#company+div .inner_item_txt dl:nth-of-type(4) dd div:nth-child(n+2){
  margin-top: 20px;
}

/* バナー */
#banner+section .title{
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}
#banner+section .title span{
  font-size: 6rem;
}
#banner+section .inner_item_txt>div{
  display: flex;
  gap: 50px;
  margin-top: 20px;
}
#banner+section .inner_item_txt>div .text{
  border: 1px solid #fff;
  background: rgba(44, 116, 218, 0.8);
  padding: 10px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}

#banner+section .inner_item_txt>div .text span{
  font-size: 4rem;
}
#banner+section .contents_btn01 a{
  min-width: 300px;
  background: #FFFF00;
}
#banner+section .contents_btn01 a::before,
#banner+section .contents_btn01 a::after{
  content: none;
}

/* レスポンシブ */
@media screen and (min-width: 1600px){
  /* メッセージ */
  #message+section::before{
    width: 44vw;
  }
  /* 会社概要 */
  #company_title+section::before{
    width: 30vw;
  }
}
@media screen and (min-width: 1800px){
  /* 会社概要 */
  #company_title+section::before{
    width: 32vw;
  }
}
@media screen and (max-width: 1100px){
  /* メッセージ */
  #message+section::before{
    width: 47vw;
  }
}
@media screen and (max-width: 768px){
  /* メッセージ */
  #message+section::before{
    content: none;
  }
  #message+section .wrapper_item{
    display: block;
  }
  #message+section .inner_item_img{
    width: 90%;
    margin: 0 auto;
  }
  #message+section .inner_item_txt{
    width: 100%;
    margin-top: 40px;
  }
  #message+section .heading{
    text-align: end;
  }
  #message+section .heading.block_header_2 .h{
    display: inline-block;
    border-bottom: 3px solid #2C74DA;
  }
  #message+section .sp768{
    display: none;
  }
  /* 会社概要 */
  #company_title+section::before{
    content: none;
  }
  #company_title+section .inner_item_txt .title span{
    display: inline-block;
    border-bottom: 3px solid #2C74DA;
  }
  #company+div .inner_item_txt dl{
    flex-direction: column;
    gap: 0;
  }
  #company+div .inner_item_txt dl dt{
    width: 100%;
  }
  #company+div .inner_item_txt dl:last-of-type dt{
    border-bottom: none;
  }
  #company+div .inner_item_txt dl:last-of-type dd{
    border-bottom: 2px solid #2C74DA;
  }
}
@media screen and (max-width: 500px){
  /* 会社概要 */
  #company+div .inner_item_txt dl:nth-of-type(4) dd div{
    display: block;
  }
}