@charset "UTF-8";

@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue-Book.woff2") format("woff2");
  font-weight: 400; /* Bookを400扱いにする例 */
  font-style: normal;
  font-display: swap;
}

/* 使用例 */
.bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
}


.w1100{
  margin: auto;
  width: 90%;
  max-width: 1100px;
}

/*===============
header
===============*/
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ロゴ */
.logo a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

/* ナビ */
.nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.nav a:hover {
  color: #000;
}

/* ハンバーガー */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  transition: 0.3s;
}

/* スマホ時 */
@media (max-width: 1150px) {
  .menu-btn { display: flex; }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid #eee;
  }

  .nav.open {
    max-height: 300px; /* メニューが開く高さ */
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav li {
    border-bottom: 1px solid #eee;
  }

  .nav a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* 開閉アニメーション */
  .menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
} 

  .logo{
    display: flex;
    gap:15px;
    flex-wrap: wrap;
    line-height: 1em;
    align-items: center;
  }  
  
  .logo small{
   line-height: 1.5em;
    display: inline-block;
  }
  
  .header{
    top:65px;
    width: calc(100% - 140px);
    left: 70px;
    border-radius: 10px;;
    box-shadow: 0 0 10px rgba(42 148 244 / 20%);
    border-bottom: none;
  }

.mainvisual{
  margin: auto;
  margin-top: 30px;
  width: calc(100% - 60px);
  background:url("../images/main_bg.webp") center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 20px;
  padding-top: 150px;
}

  .mainvisual_cont{
    display: grid;
    grid-template-columns: 450px 1fr;
    gap:100px;
    align-items: center;
  }
  
  .mainvisual_box01 p{
    margin-bottom: 10px;
  }

  .top-icon{
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap:100px;
    justify-content: center;
  }
  
  .top-icon li:not(:last-child):after{
    content:" ";
    display: block;
    width: 60px;
    height: 1px;
    position: absolute;
    transform: rotate(-75deg);
    top:25px;
    right: -80px;
    background: #cccccc;
  }
  
  .top-icon li{
    display: flex;
    align-items: center;
    gap:20px;
    position: relative;
  }
  
  .top-icon li .sns{
    display: flex;
    align-items: center;
    gap:10px;
    position: relative;
  } 

.u-section-wrap{
    margin: auto;
    margin-top: 150px;
    width: calc(100% - 60px);
  background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 20px;
    padding-top: 150px;
  padding-bottom: 100px;
} 

  .p-rlt{
    position: relative;
  }
  
  .section-title{
    position: absolute;
    color:var(--color-main);
  }
  
  .section-title small{
    font-size: 20px;
  }
  
  .section-title span{
    font-size: 89px;
  }
  
  .btn{
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 230px;
    padding: 10px 15px;
    width: 100%;
  }
  
  .buisiness-btn{
    position: absolute;
    top:-180px;
    right: 0;
  }
  
  .section-title.pt01{
    position: absolute;
    top:-250px;
    left: 0;
  }

  .buisiness-list-wrap{
    position: relative;
  }
  
  .buisiness-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:60px;
  }

  .buisiness-list .buisiness-title{
    background-image: url("../images/top_business_bg.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left top;
    aspect-ratio:1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:22px;
    color:var(--color-main);
  }
  
.buisiness-text{
    margin-top: 40px;
    font-size: 18px;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(42 148 244 / 20%);
  color:var(--color-main);
  }

.buisiness-list li{
    background-image: url("../images/top_business_box_bg.webp");
    background-size:100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
  position: relative;
  }

.buisiness-list li:not(:last-child):after{
 content:" ";
  background: url("../images/top_business_line02.webp");
  width: 100px;
  height: 10px;
  display: block;
  position: absolute;
  right: -80px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 150px;
  z-index: 10;
}

.top_business_line01{
  position: absolute;
  top:-50px;
  left: 14%;
  width: 72%;
}

.technology .w1100{
  padding-bottom: 400px;
}

  .def-text{
    font-size: 15px;
  }
  
  .mb-40{
    margin-bottom: 40px;
  }
  
  .technology-box{
    display: grid;
    gap:30px;
  }
  
  .technology-cont{
    display: grid;
    grid-template-columns: 380px 1fr;
    gap:80px;
  }
  
  .technology-list{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: center;
    position: absolute;
    bottom:0;
    width: 100%;
  }
  
  .technology-list small{
    color:#ffffff;
    font-size: 18px;
  }
  
  .technology-list span{
    display: inline-block;
    padding: 3px 15px;
    color: var(--color-main);
    font-size: 18px;
    border-radius: 100px;
    background: rgba(255 255 255 / 80%);
  }

  .product-block{
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(42 148 244 / 20%);
    margin-bottom: 40px;
  }
  
  .u-section-wrap02{
    padding: 80px 0;
  }
  
  .section-title.pt02{
    text-align: center;
    width: 100%;
    position: inherit;
  }

  .product-box .link{
    text-align: right;
    margin-top: 20px;
  }
  
  .product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .product-title{
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    color:var(--color-main);
    background: linear-gradient(to right,#e9f2fd,#c5def9);
  }
  
  .product-title span{
    font-size: 15px;
  }
  
  .product-inner{
    padding: 30px;
    background: #ffffff;
  }
  
  .product-text01{
    font-size: 18px;
    margin-bottom: 8px;
    color:var(--color-main);
  }
  
  .product-list{
    padding: 20px;
    border-radius: 10px;
    background: #f0f7fe;
    display: grid;
    gap:10px;
    margin-top: 20px;
  }
  
  .product-list li{
    display:grid;
    grid-template-columns: 20px 1fr;
    gap:10px;
    font-size: 13px;
  }
  
  .product-block:nth-child(even) .product-box{
    order:1;
  } 
  
  .product-block:nth-child(even) .product-img{
    order:2;
  }   

.product-box{
width: 45%; 
}

.product-img{
width:55%;
}

  .center{
    margin: auto;
  }
  
  .u-section-wrap03 {
    margin: auto;
    margin-top: 150px;
    width:100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    padding-top: 150px;
    padding-bottom: 100px;
}

  .contact-list{
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
    margin-bottom: 50px;
  }
  
  .contact-list .text{
    font-size: 18px;
    line-height: 2em;
    color:var(--color-main);
    margin-top: 20px;
    text-align: center;
  }

  .btn.pt02{
    justify-content: center;
  }
  
  .btn02.news{
    max-width: 230px;
    border-radius: 100px;
    margin-top: 20px;
    box-shadow: none;
    background: transparent;
    padding: 10px 15px;
    border:1px solid var(--color-main);
  }
  
  .news-box-list{
    display: grid;
    gap:20px;
  }
  
  .news-cont{
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
  }
  
  .news-box-list span{
    color:#333333;
  }
  
  .news-box-list small{
    border-radius: 100px;
    display: inline-block;
    padding: 1px 10px;
    margin-left: 10px;
    border:1px solid var(--color-main);
  }
  
  .news-box-list *:hover span{
    color:#ffffff;
  }
  
    .news-box-list *:hover small{
    border-color:#ffffff;
  }


  .under-cont{
    display: grid;
    grid-template-columns: 315px 1fr;
    gap:60px;
    align-items: center;
  }
  
  .under-cont-box02{
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
  }
  
  .under-cont-box02 .text{
    font-size: 18px;
    margin-bottom: 10px;
  }  

  .mt40{
    margin-top: 40px;
  }
  
  .lp-footer{
    padding: 40px 0;
    background:#1c2f5b;
    border-radius: 20px 20px 0 0;
    color:#ffffff;
  }
  
  .lp-footer .menu-wrap{
    margin-bottom: 20px;
  }
  
  .lp-footer-cont{
    display: grid;
    grid-template-columns: 30% 30% 20% 20%;
    gap:40px;
  }
  
  .lp-footer-cont ul{
    margin-top: 5px;
    line-height: 2em;
  }
  
  .btn.pt03{
    background: #fff799;
    border:1px solid var(--color-main);
  }
  
  .foot-content{
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    background-image: url("../images/foot-cont-bg.webp");
    background-size:cover;
    background-color:#0071bc;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 50px;
  }

.foot-content span{
  font-size: 66px;
}


  .top-icon.pt02{
    border-top:1px solid #ffffff;
    border-bottom:1px solid #ffffff;
    margin: 40px 0;
  }
  
  .top-icon.pt02:after{
    background:#ffffff;
  }
  
  .copy{
    text-align: center;
    color:#ffffff;
    font-size: 13px;
  }


.buisiness{
    background-image: url("../images/top_business_bg02.webp");
}

.technology{
    background-image: url("../images/top_technology_bg.webp");
}

.contact{
    background-image: url("../images/top_contact_bg.webp");
}

.news{
    background-image: url("../images/top_news_bg.webp");
}

.lp-footer-cont {
    grid-template-columns: 25% 25% 1fr 1fr;
}
