@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
h1, h2, h3, h4, h5, h6, p, figure {
  margin: 0;
}
ul, ol, li, dl, dd {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}

/* ヘッダー下の余白消す */
.breadcrumb{
    margin-bottom:0;
}
.site-body,
.site-body-wide{
    margin-top:0;
    padding-bottom:0;
}

#dcms_layoutPageBlockPasteArea{
padding-top:126px;
}
@media (max-width: 1024px) {
#dcms_layoutPageBlockPasteArea{
padding-top:60px;
}
}
@media (max-width: 749px) {
#dcms_layoutPageBlockPasteArea{
padding-top:60px;
}
}



/*--------------------------------------------------------
共通
--------------------------------------------------------*/

.text-center{
    text-align:center;
}
.hulft10lp-title{
    background:#ec6c00;
    color:#fff;
    display:inline-block;
    margin:40px auto;
    padding:0 1rem;
    line-height:2;
    border-radius:6px;
    font-size:2rem;
} 

.hulft10lp-title__point{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:start;
  gap:0.3em;

  font-size:2rem;
  margin-bottom:40px;
}

.hulft10lp-title__point::before{
  content:attr(data-number);
  color:#ec6c00;
  font-size:4rem;
  line-height:0.9;
  font-family:'Avenir Next','Arial',sans-serif;
}

.bg-green{
    background:#dfeee0;
    padding:40px;
    border-radius:16px;
}
.bg-blue{
    background:#c8daec;
    padding:40px;
    border-radius:16px;
}
.bg-purple{
    background:#d6dbef;
    padding:40px;
    border-radius:16px;
}

/* グリッド 3カラム */
.hulft10lp-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 749px) {
.hulft10lp-grid3{
    grid-template-columns:1fr;
}
}

/* 下矢印 */
.hulft10lp-arrow {
  width: 0;
  height: 0;
  margin: 20px auto;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 40px solid #fff;
}

.PConly{
    display:block;
}
.SPonly{
    display:none;
}

/* SP */
@media (max-width: 749px) {
    .PConly{
    display:none;
    }
    .SPonly{
    display:block;
    }
    
    .hulft10lp-title{
        font-size:1.3rem;
    }
    .hulft10lp-title__point{
         font-size:1.3rem;
    }
}

/*--------------------------------------------------------
メインビジュアル
--------------------------------------------------------*/
.hulft10lp-mv {
  position: relative;
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("/dcms_media/image/hulft10_mv_bk.jpg") center center / cover no-repeat;
}

/* 暗めのグラデーション */
.hulft10lp-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 20, 45, 0.45) 0%,
      rgba(20, 30, 70, 0.20) 35%,
      rgba(20, 30, 70, 0.08) 100%
    );
  z-index: 1;
}

.hulft10lp-mv__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  padding: 0 60px;
  box-sizing: border-box;
}

.hulft10lp-mv__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.02em;
  font-size: clamp(34px, 4.3vw, 72px);
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.28),
    0 1px 3px rgba(0, 0, 0, 0.22);
}

/* tablet */
@media (max-width: 1024px) {
  .hulft10lp-mv {
    height: auto;
    padding:5% 0;
  }
}

/* SP */
@media (max-width: 749px) {
  .hulft10lp-mv {
    height: auto;
    height: auto;
    padding:5% 0;
  }
  .hulft10lp-mv__title {
    font-size: 24px;
  }
}


/*--------------------------------------------------------
イントロ
--------------------------------------------------------*/

.hulft10lp-intro {
  background: #efefef;
  padding: 28px 15px 50px;
}

.hulft10lp-intro__grid {
  display: grid;
  grid-template-columns: 47.5% 43.5%;
  justify-content: space-between;
}

.hulft10lp-intro__cell {
  background: transparent;
}

/* 説明文 */
.hulft10lp-intro__textBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  box-sizing: border-box;
  text-align: center;
}

.hulft10lp-intro__textBox p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

/* 画像 */
.hulft10lp-intro__imageBox {
  height: 100%;
}

.hulft10lp-intro__imageBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* SP */
@media (max-width: 749px) {
  .hulft10lp-intro {
    padding: 16px 12px 28px;
  }

  .hulft10lp-intro__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hulft10lp-intro__cell:nth-child(1){ order:1; }
.hulft10lp-intro__cell:nth-child(2){ order:2; }
.hulft10lp-intro__cell:nth-child(3){ order:4; }
.hulft10lp-intro__cell:nth-child(4){ order:3; }
.hulft10lp-intro__textBox p{
    font-size:1.1rem;
}
}


/*--------------------------------------------------------
ポイント
--------------------------------------------------------*/

.hulft10lp-point {
  padding: 60px 0 0;
}

.hulft10lp-point__lead {
  font-size: 1.3rem;
  max-width:85%;
  margin:0 auto 40px;
}

  
  .hulft10lp-update {
  padding: 0 0 80px;
}

.hulft10lp-update  h4{
    text-align:center;
    margin:40px 0 20px;
}

.hulft10lp-update .text-center{
    position:relative;
}

/*利用範囲*/

.hulft10lp-update h3 {
  display: inline-block;
  padding: 0 2rem;
  color: #fff;
  line-height: 2;
  border-radius: 8px;
}

.hulft10lp-update h3 span{
    display:inline-block;
    background:#ec6c00;
    border-radius:100px;
    margin:10px 10px 10px 0;
    font-size:1.1rem;
    padding:10px 20px;
}
/*green*/
.hulft10lp-update .hulft10lp-update__scope h3 {
  background: #57b26a;
}
/*blue*/
.hulft10lp-update .hulft10lp-update__operation h3 {
  background: #00b0f0;
}
/*purple*/
.hulft10lp-update .hulft10lp-update__security h3 {
  background: #7483c0;
}

.hulft10lp-update__badge {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(70px);
  width:70px;
   height:70px;
   border-radius:50%;
   background:#ec6c00;
   color:#ffeee1;
   font-size:1.2rem;
   font-weight:700;
   display:flex;
   align-items:center;
   justify-content:center;
}

/* 課題ボックス */
.hulft10lp-update__issueBox {
 display:flex;
 background:#fff;
 padding:20px;
 border-radius:8px;
 align-items:center;
   justify-content:center;
}

.hulft10lp-update__issueBox .icon{
    margin-right:1rem;
}

.hulft10lp-update__issueBox .icon img{
    width:60px;
    height:60px;
}

.hulft10lp-update__issueBox .textbox p {
  font-size:1.1rem;
  font-weight:500;
}

/* 解決 */

.hulft10lp-update__solution{
    background:#fff;
    padding:1px 40px 40px;
    border-radius:10px;
}

.hulft10lp-update__solutionBox{
    text-align:center;
    padding:20px;
    border-radius:10px;
}

/*green*/
.hulft10lp-update__scope .hulft10lp-update__solutionBox{
    border:2px solid #57b26a;
}
/*blue*/
.hulft10lp-update__operation .hulft10lp-update__solutionBox{
    border:2px solid #00b0f0;
}
/*purpple*/
.hulft10lp-update__security .hulft10lp-update__solutionBox{
    border:2px solid #7483c0;
}

.hulft10lp-update__solutionBox .icon img{
    width:60px;
    height:60px;
}

.hulft10lp-update__solutionBox .boxtitle{
    font-size:1.3rem;
    font-weight:600;
    margin:1rem 0;
}

.hulft10lp-update__solutionBox p{
    padding:20px 10px;
    margin:1rem 0 0;
    border-radius:6px;
    font-size:1.1rem;
    font-weight:500;
}
/*green*/
.hulft10lp-update__scope .hulft10lp-update__solutionBox p{
    background:#dfefe0;
}
/*blue*/
.hulft10lp-update__operation .hulft10lp-update__solutionBox p{
    background:#c8daec;
}
/*purple*/
.hulft10lp-update__security .hulft10lp-update__solutionBox p{
    background:#d6dbef;
}

/* SP */
@media (max-width: 749px) {
.hulft10lp-update__issueBox{
    width:100%;
    justify-content:flex-start;
}
.hulft10lp-update__solutionBox .icon img{
    width:80px;
    height:80px;
}
.hulft10lp-point__lead{
    font-size:1rem;
}
.hulft10lp-update__solutionBox p{
font-size:1em;
}
.hulft10lp-update h3 span{
display:block;
margin:10px 0 0 0;
font-size:0.8rem;
padding:5px 15px;
}
}

/*--------------------------------------------------------
利用シーン
--------------------------------------------------------*/
.hulft10lp-scene{
    padding:80px 0 1px;
}
.hulft10lp-problem {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0;
}

/* ボックス */

.hulft10lp-problem__box {
  display: flex;
  align-items: stretch;
  flex: 1;
  background: #eeeeee;
  border: 1px solid #808080;
  border-radius:8px;
  overflow:hidden;
}

/* 解決 */

.hulft10lp-problem__box--solution {
  border-color: #3781c8;
}

/* ラベル */

.hulft10lp-problem__label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  display:flex;
  justify-content:center;
}

.hulft10lp-problem__box--problem .hulft10lp-problem__label {
  background: #808080;
}

.hulft10lp-problem__box--solution .hulft10lp-problem__label {
  background: #3781c8;
}

/* 本文 */

.hulft10lp-problem__content {
  padding: 20px 28px;
  flex: 1;
}

.hulft10lp-problem__content ul {
  padding-left: 0;
}

.hulft10lp-problem__content li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.hulft10lp-problem__content li::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:8px;
  height:14px;
  border-right:2px solid #333;
  border-bottom:2px solid #333;
  transform:rotate(45deg);
}

/* 矢印 */

.hulft10lp-problem__arrow {
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 28px solid #3781c8;
}

/* SP */
@media (max-width: 749px) {
.hulft10lp-problem{
    display:block;
}
.hulft10lp-problem__arrow{
    transform:rotate(90deg);
    margin:0 auto;
}
}