@charset "UTF-8";
/* Hero Section
---------------------------------------*/
.hero {
  background: #FFF;
  padding: 120px 0 60px;
  margin-top: 70px;
  width: 100%;
  overflow: hidden;
  position: relative; }
  .hero .MainImage {
    width: 90%;
    height: auto;
    margin: 0 0;
    display: block;
    position: relative; }
    .hero .MainImage .bg {
      z-index: 0; }
    .hero .MainImage .arrow {
      position: absolute;
      bottom: 0.9vw;
      display: block;
      right: 7vw;
      width: 30vw; }
      .hero .MainImage .arrow img {
        width: 100%;
        display: block;
        animation: pulse 2s; }
@keyframes pulse {
  0% {
    transform: scale(0.2) translateY(20px);
    opacity: 0;
    transform-origin: bottom center; }
  50% {
    transform: scale(1) translateY(-5px);
    opacity: 1;
    transform-origin: bottom center; }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
    transform-origin: bottom center; } }
      @media screen and (max-width: 1200px) {
        .hero .MainImage .arrow {
          bottom: 1vw;
          right: 5vw;
          height: auto; } }
    .hero .MainImage .img02 {
      position: absolute;
      bottom: 0;
      display: block;
      right: 2vw;
      width: 20vw; }
      .hero .MainImage .img02 img {
        width: 100%; }
      @media screen and (max-width: 1200px) {
        .hero .MainImage .img02 {
          right: 1vw;
          height: auto; } }

/* DX Section
---------------------------------------*/
.dxSection {
  background: #449DC9;
  color: #FFF;
  padding: 0 0;
  width: 100%;
  overflow: hidden; }
  .dxSection .wrap {
    display: flex;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
    @media screen and (max-width: 768px) {
      .dxSection .wrap {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px; } }

.dxTxt {
  flex: 1;
  margin: auto;
  line-height: 1.9em;
  padding-bottom: 60px; }
  @media screen and (max-width: 768px) {
    .dxTxt {
      margin: 0;
      text-align: center; } }

.dxImg {
  width: 500px;
  gap: 30px; }
  @media screen and (max-width: 768px) {
    .dxImg {
      width: 100%;
      max-width: 400px;
      margin: 0 auto; } }
  .dxImg p {
    margin-top: auto; }
  .dxImg h2 {
    margin-top: -1px;
    margin-bottom: 100px; }
    @media screen and (max-width: 768px) {
      .dxImg h2 {
        margin-bottom: 40px;
        font-size: 1.8em; } }

/* News Section */
.newsSection {
  padding: 100px 0;
  width: 100%;
  overflow: hidden; }
  @media screen and (max-width: 1100px) {
    .newsSection {
      flex-direction: column;
      align-items: center;
      padding: 50px 0; } }
  .newsSection .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px; }
    @media screen and (max-width: 1100px) {
      .newsSection .wrap {
        flex-direction: column;
        align-items: center; } }
  .newsSection h2 {
    font-family: 'Yu Gothic', Helvetica;
    font-weight: bold;
    color: #231815;
    font-size: 2em;
    line-height: 50px;
    margin-bottom: 40px; }
  .newsSection .badge {
    width: 60px;
    height: 22px;
    background-color: #231815;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    color: #FFF; }
  .newsSection .newsLeft {
    flex-shrink: 0; }
    .newsSection .newsLeft h3 {
      background: #333;
      color: #FFF;
      padding: 8px 16px;
      border-radius: 3px;
      font-size: 0.9em;
      font-weight: 600;
      margin-bottom: 15px;
      display: inline-block; }
  .newsSection .newsRight {
    flex: 1;
    max-width: 740px; }
    .newsSection .newsRight dl {
      display: flex;
      align-items: center; }
    .newsSection .newsRight .newsItem {
      display: flex;
      align-items: center;
      padding: 20px 40px 20px 0;
      border-top: 1px solid #231815;
      border-bottom: 1px solid #231815;
      gap: 20px;
      box-sizing: border-box;
      position: relative; }
      .newsSection .newsRight .newsItem:first-child {
        border-bottom: none; }
      .newsSection .newsRight .newsItem:before {
        content: '→';
        width: 30px;
        height: 30px;
        background: #449cc9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        font-size: 0.8em;
        flex-shrink: 0;
        font-weight: bold;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto; }
    .newsSection .newsRight .newsImg {
      width: 160px;
      height: 100px;
      background-color: #d9d9d9;
      border-radius: 10px;
      margin-right: 48px;
      overflow: hidden; }
      .newsSection .newsRight .newsImg img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .newsSection .newsRight .newsTitle h3 {
      font-family: 'Yu Gothic', Helvetica;
      font-weight: bold;
      color: black;
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 16px; }
    .newsSection .newsRight .newsTitle .newsDate {
      font-family: 'Yu Gothic', Helvetica;
      font-weight: bold;
      color: black;
      font-size: 20px;
      line-height: 28px; }

/* Problems Section */
.problemSection {
  position: relative;
  z-index: 1;
  background-color: #f2f2f2;
  padding: 64px 0 120px;
  overflow: visible; }
  .problemSection .wrap {
    margin: 0 auto; }
  .problemSection h2 {
    font-family: 'Yu Gothic', Helvetica;
    font-weight: bold;
    color: #231815;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5em; }
  .problemSection .cards {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 20px; }
    @media screen and (max-width: 1100px) {
      .problemSection .cards {
        justify-content: center;
        flex-wrap: wrap; } }
    @media screen and (max-width: 768px) {
      .problemSection .cards {
        flex-direction: column;
        align-items: center; } }
    .problemSection .cards .card {
      width: 340px;
      height: 292px;
      background-color: white;
      border-radius: 20px;
      border: 1px solid #5e5e5e;
      position: relative; }
      .problemSection .cards .card:nth-child(2) {
        margin-top: 50px; }
        @media screen and (max-width: 1100px) {
          .problemSection .cards .card:nth-child(2) {
            margin-top: 0; } }
      .problemSection .cards .card .cardContent {
        display: flex;
        padding: 0 32px;
        align-items: center; }
      .problemSection .cards .card h3 {
        font-family: 'Yu Gothic', Helvetica;
        font-weight: bold;
        color: #231815;
        font-size: 20px;
        text-align: center;
        white-space: pre-line;
        margin-bottom: 15px; }
        .problemSection .cards .card h3 span {
          background: linear-gradient(transparent 75%, yellow 25%);
          display: inline-block; }
      .problemSection .cards .card p {
        font-weight: 500;
        color: #231815;
        font-size: 14px;
        white-space: pre-line;
        flex: 1; }
      .problemSection .cards .card .imgBox {
        display: inline-block; }
  .problemSection .fukidashi {
    position: absolute;
    bottom: -54px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    text-align: center; }

/* About Section
---------------------------------------*/
/* Section Styles (About, Program, Subsidy) */
.aboutSection,
.programSection,
.subsidySection {
  background-color: #D8F0FB;
  padding: 64px 0; }
  .aboutSection .wrap.flex,
  .programSection .wrap.flex,
  .subsidySection .wrap.flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap; }
  .aboutSection .txt,
  .programSection .txt,
  .subsidySection .txt {
    flex: 1;
    margin: auto; }
    .aboutSection .txt p,
    .programSection .txt p,
    .subsidySection .txt p {
      margin-bottom: 40px;
      font-weight: normal;
      color: #231815;
      font-size: 16px;
      line-height: 28px;
      max-width: 520px; }
  .aboutSection h2,
  .programSection h2,
  .subsidySection h2 {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: white;
    font-size: 68px;
    line-height: 1.5em;
    position: relative;
    margin-bottom: 20px;
    text-shadow: 1px 1px 0px #231815, -1px 1px 0px #231815, 1px -1px 0px #231815, -1px -1px 0px #231815, 1px 0px 0px #231815, 0px 1px 0px #231815, -1px 0px 0px #231815, 0px -1px 0px #231815;
    /* 文字の影 */ }
  .aboutSection h3,
  .programSection h3,
  .subsidySection h3 {
    font-weight: bold;
    color: #231815;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    align-items: center; }
    .aboutSection h3::before,
    .programSection h3::before,
    .subsidySection h3::before {
      content: '';
      display: inline-block;
      width: 15px;
      height: 3px;
      background-color: #449cc9;
      margin-right: 3px; }
  .aboutSection h4,
  .programSection h4,
  .subsidySection h4 {
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #231815;
    font-size: 32px;
    line-height: normal;
    position: relative; }
    @media screen and (max-width: 1000px) {
      .aboutSection h4.sp,
      .programSection h4.sp,
      .subsidySection h4.sp {
        display: block !important;
        margin: 30px 0; } }
    .aboutSection h4 span,
    .programSection h4 span,
    .subsidySection h4 span {
      background-color: white;
      padding: 0 8px;
      display: inline-block;
      margin-bottom: 10px; }
      @media screen and (max-width: 1000px) {
        .aboutSection h4 span,
        .programSection h4 span,
        .subsidySection h4 span {
          padding: 10px;
          display: inline;
          font-size: 0.7em; } }
  .aboutSection .aboutImg,
  .programSection .aboutImg,
  .subsidySection .aboutImg {
    text-align: center;
    width: 460px;
    margin: auto; }
  .aboutSection iframe,
  .programSection iframe,
  .subsidySection iframe {
    margin-top: 40px; }

.programSection {
  background-color: #EBFAFF; }

.subsidySection .aboutImg {
  padding-top: 160px; }
  @media screen and (max-width: 1000px) {
    .subsidySection .aboutImg {
      padding-top: 20px; } }

/*downloadSection*/
.downloadSection {
  padding: 64px 0; }
  .downloadSection .badge {
    min-width: 190px;
    height: 22px;
    background-color: #231815;
    border-radius: 6px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    line-height: 20px;
    padding: 2px 10px; }
  .downloadSection h2 {
    font-weight: bold;
    color: #231815;
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: normal; }
  .downloadSection .downloadGrid {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    gap: 20px; }
    @media screen and (max-width: 1000px) {
      .downloadSection .downloadGrid {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        align-content: center; } }
  .downloadSection .downloadItem {
    max-width: 520px;
    height: 437px;
    background-color: #feeb2d;
    border-radius: 20px;
    border: none;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9em;
    box-sizing: border-box;
    padding: 40px 40px; }
    @media screen and (max-width: 1000px) {
      .downloadSection .downloadItem {
        width: 120%;
        height: auto;
        padding: 40px 30px; } }
    @media screen and (max-width: 1000px) {
      .downloadSection .downloadItem .center {
        width: 100%;
        margin-top: 30px; } }
    @media screen and (max-width: 1000px) {
      .downloadSection .downloadItem .center .downloadBtn {
        width: 100%; } }
  .downloadSection h3 {
    font-weight: bold;
    color: #231815;
    font-size: 22px;
    line-height: 20px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal; }
    .downloadSection h3:before {
      content: '';
      display: inline-block;
      margin-right: 1.5em;
      border: #231815 1px solid;
      height: 1.5em;
      transform: rotate(-30deg); }
    .downloadSection h3:after {
      content: '';
      display: inline-block;
      margin-left: 1.5em;
      border: #231815 1px solid;
      height: 1.5em;
      transform: rotate(30deg); }
  .downloadSection .center {
    text-align: center;
    margin-top: auto; }
  .downloadSection .downloadBtn {
    width: 360px;
    max-width: 100%;
    height: 60px;
    background: url("../img/icoDl.svg") no-repeat left 20px center #231815;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #FFF;
    position: relative; }
    .downloadSection .downloadBtn.type02 {
      background: url("../img/icoDl02.svg") no-repeat left 20px center #231815; }
    .downloadSection .downloadBtn:hover {
      opacity: 1;
      background: url("../img/icoDl_hover.svg") no-repeat left 20px center #666;
      text-decoration: none; }
    .downloadSection .downloadBtn:hover.type02 {
      background: url("../img/icoDl02.svg") no-repeat left 20px center #666; }
    .downloadSection .downloadBtn::after {
      content: '';
      width: 0.5em;
      height: 0.5em;
      border-top: solid 2px #FFF;
      border-right: solid 2px #FFF;
      top: 0;
      bottom: 0;
      margin: auto;
      transform: rotate(45deg);
      position: absolute;
      right: 40px; }

@media (max-width: 768px) {
  .contactInfo {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px; }

  .hero {
    padding-top: 30px; }

  .heroTxt h1 {
    font-size: 28px; }

  .nav ul {
    display: none; } }
