@charset "UTF-8";
div#eyecatch{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: calc(var(--header-height) + 240px);

  font-size: 38px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;

  background: linear-gradient(90deg, #0FB48D, #48D39D);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
section .h2-wrap{
  h2{
    font-size: 26px;
    font-weight: 600;
    line-height: 1.6;
  }
  .h2-ENG{
    font-size: 17px;
    font-family: var(--ff-2);
    font-weight: 700;
    color: var(--tc);
  }
}
section#common-intro{
  padding-top: 120px;
  padding-bottom: 88px;
  
  h2{
    margin-bottom: 32px;

    font-size: clamp(18px,5vw,28px);
    font-weight: 700;
    color: var(--tc);
    text-align: center;
  }
}
div.panelBlock{
  padding: 40px 32px 48px;

  >*+*{
    margin-block-start: 48px;
  }
  h4{
    margin-bottom: 16px;

    font-size: 20px;
    color: var(--tc);
  }

  background-color: #fff;
}
div.pointBlock{
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 40px;
  align-items: center;

  padding: 16px 48px;

  border-radius: 100px;
  background: #FFEDA3;

  span{
    font-weight: 700;
  }
}
div.textBlock{
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 24px 0;

  .title{
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: var(--tc);
    font-weight: 700;
    text-align: center;
  }
  .content{
    padding: 4px 32px;

    line-height: 1.6;

    border-left: solid 1px #fff;
  }
  .content span{
    display: block;
    margin-bottom: 4px;
    
    font-weight: 700;
  }
  background: #EBEBEB;
}
ul.numbered-list{
  width: 100%;

  >*+*{
    margin-block-start: 32px;
  }
  li.item{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 8px;
  }
  .number{
    grid-column: 1/2;
    grid-row: 1/2;

    font-size: 51px;
    font-family: var(--ff-2);
    color: #C7E8E0;
    line-height: 0.8;
  }
  .title{
    grid-column: 2/3;
    grid-row: 1/2;

    display: flex;
    align-items: flex-end;
    font-size: 22px;
    font-weight: 700;
    color: var(--tc);
  }
  .text{
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
div.block-itemCON-wrap{
  padding: 80px 0 120px;
  background-color: #fff; /* 背景色 */
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), /* 点線1の色 */
                    linear-gradient(180deg, #ccc 1px, transparent 1px); /* 点線2の色と太さ */
  background-size: 8px 100%, /* 点線1のサイズ */
                   100% 2.5em; /* 点線2のサイズ */
  line-height: 2.5em; /* 文字の高さ */
}
.block-itemCON{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 32px;
  row-gap: 48px;

  width: min(1120px,100%);
  margin-inline: auto;
  padding: 0 16px;

  .item{
    padding: 32px 24px;
    background: #E6FFED;
  
    line-height: 1.4;
  }
  .item .title{
    font-size: 20px;
    color: var(--tc);
    font-weight: 700;
    text-align: center;
  }
  .item picture{
    width: 80%;
    margin-inline: auto;
  }
  .item .text span{
    display: block;
    font-weight: 700;
  }
}
@media (min-width : 1200px){
}
@media (max-width : 1200px){
  div#eyecatch{
    height: calc(var(--header-height) + 12.5vw);

    font-size: max(20px,4vw);
    color: #fff;
  }
}
@media (max-width : 599px){
  div.panelBlock{
    padding: 24px 16px 32px;
  
    >*+*{
      margin-block-start: 32px;
    }
    h4{
      margin-bottom: 16px;
  
      font-size: 18px;
      text-wrap: wrap;
    }
  }
  div.pointBlock{
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 40px;
    align-items: center;
  
    padding: 16px 16px;
  
    border-radius: 0;
  }
  div.textBlock{
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px 16px;
    row-gap: 16px;
  
    .content{
      padding: 8px 0px;
  
      border-left: solid 0px #fff;
    }
  }
  ul.numbered-list{
    >*+*{
      margin-block-start: 24px;
    }
    .number{
      font-size: 9vw;
    }
    .title{
      font-size: max(5vw,18px);
    }
  }
  section#common-intro{
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .block-itemCON{
    display: grid;
    grid-template-columns: repeat(1,1fr);

    .item{
      padding: 16px 16px;
      background: #E6FFED;
    
      line-height: 1.4;
    }
  }
}