*{
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  margin: 0;
  background: #eeeae1;
  color: #1B3552;
  font-family: "kozuka-gothic-pro","kozuka-gothic-pr6n","Kozuka Gothic Pro","Kozuka Gothic Pr6N","Yu Gothic","Hiragino Kaku Gothic ProN",sans-serif;
  font-weight: normal;
}
strong,b,em,small,h1,h2,h3,h4,h5,h6{
  font-weight: normal;
}
.site-shell{
  position: relative;
  width: min(100%,430px);
  margin: auto;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 18px #0002;
}
.header{
  height: 99px;
  display: flex;
  align-items: center;
  background: #fff;
}
.header__summary,
.header-nav,
.news-list,
.video-card--pc,
.pc-continuation,
.document-card.is-hidden,
.check-result[hidden],
.faq-section__group-title.is-hidden,
.faq-list.is-hidden,
.faq-item.is-hidden,
.faq-empty[hidden]{
  display: none;
}
.sp,
.pc,
.tablet-break{
  display: none;
}
.logo{
  width: 126px;
  height: 83px;
  margin-top: auto;
}
.pill-button,
.check-link{
  display: flex;
  align-items: center;
  justify-content: center;
}
.pill-button{
  gap: 17px;
  color: white;
  text-decoration: none;
  background: #e87534;
  border-radius: 999px;
  font-weight: normal;
}
.pill-button img{
  width: 19px;
}
.compact{
  width: 154px;
  height: 49px;
  flex: 1;
  font-size: 16px;
  margin: 0 32.5px 0 29px;
}
.menu{
  position: relative;
  z-index: 1002;
  border: 0;
  background: none;
  width: 31px;
  padding: 3px;
  display: grid;
  gap: 10px;
}
.menu span{
  height: 1px;
  background: #9ba6a6;
  width: 28px;
  transform-origin: center;
  transition: opacity .2s ease, transform .25s ease, background-color .2s ease;
}
.menu.is-active span{
  background: #163a5a;
}
.menu.is-active span:nth-child(1){
  transform: translateY(11px) rotate(45deg);
}
.menu.is-active span:nth-child(2){
  opacity: 0;
}
.menu.is-active span:nth-child(3){
  transform: translateY(-11px) rotate(-45deg);
}
.subsidy-banner{
  display: grid;
  gap: 8px;
  padding: 14px 24px 16px;
  background: #071451;
  color: #fff;
  text-align: center;
}
.subsidy-banner__label{
  width: fit-content;
  margin: 0 auto;
  padding: 5px 14px;
  border: 2px solid #e87534;
  border-radius: 999px;
  color: #e87534;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
}
.subsidy-banner__link{
  display: inline-flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  max-width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.subsidy-banner__link::after{
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.drawer-menu{
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s .28s;
}
.drawer-menu__overlay{
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .25s ease;
}
.drawer-menu__panel{
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 60%;
  max-width: 420px;
  height: 100dvh;
  padding: 26px 22px 28px;
  background: #fff;
  box-shadow: -18px 0 40px rgba(7, 20, 81, .18);
  transform: translateX(100%);
  transition: transform .28s ease;
}
.drawer-menu__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e8e2d7;
}
.drawer-menu__logo{
  width: 92px;
  height: auto;
}
.drawer-menu__close{
  display: none;
}
.drawer-menu__close span{
  position: absolute;
  left: 11px;
  top: 20px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #163a5a;
}
.drawer-menu__close span:first-child{
  transform: rotate(45deg);
}
.drawer-menu__close span:last-child{
  transform: rotate(-45deg);
}
.drawer-menu__nav{
  display: grid;
  gap: 4px;
  padding: 24px 0;
}
.drawer-menu__nav a{
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #eee8dd;
  color: #12304d;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}
.drawer-menu__nav a::after{
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-top: 2px solid #c1b496;
  border-right: 2px solid #c1b496;
  transform: rotate(45deg);
}
.drawer-menu__button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  margin-top: auto;
  border-radius: 999px;
  background: #e87534;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}
.drawer-menu__button img{
  width: 18px;
}
body.is-menu-open{
  overflow: hidden;
}
body.is-menu-open .drawer-menu{
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}
body.is-menu-open .drawer-menu__overlay{
  opacity: 1;
}
body.is-menu-open .drawer-menu__panel{
  transform: translateX(0);
}
.top-visual{
  --top-bg-width: min(100vw, 430px);
  --top-bg-height: min(186.976744vw, 804px);
  padding: 37px 35px 65px;
  background-image: url("img/top-bg.png"),url("img/top-bg-dark.png");
  background-repeat: no-repeat,no-repeat;
  background-size: var(--top-bg-width) auto,var(--top-bg-width) auto;
  background-position: center top,center var(--top-bg-height);
}
.hero-card{
  text-align: center;
  color: white;
  padding: 28px 18px 18px;
  border-radius: 11px;
  background: #9c9168aa;
}
.hero-card p{
  margin: 0;
  font-size: 18px;
}
.hero-card__label,
.hero-card h1,
.hero-copy{
  text-shadow: 0 0 7px rgba(83, 82, 82, 0.5);
}
.hero-card__label,
.hero-card h1{
  font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight: 600;
}
.hero-card h1{
  margin: 4px 0 15px;
  font-size: 40px;
  line-height: 1.13;
}
.hero-copy{
  line-height: 1.45!important;
  font-weight: bold;
}
.hero-copy strong{
  font-size: 27px;
  color: #C33211;
  font-weight: bold;
}
.check-link{
  height: 68px;
  margin: 20px 25px 16px;
  border-radius: 40px;
  background: #153d60;
  color: white;
  gap: 23px;
  text-decoration: none;
}
.check-link img{
  width: 28px;
}
.download{
  height: 69px;
  font-size: 17px;
}
.stat-list{
  display: grid;
  gap: 25px;
  margin: 90px 30px 14px;
}
.stat-card,.summary-card{
  height: 217px;
  background: white;
  border-radius: 20px;
  padding: 30px 42px;
}
.stat-card h2,.summary-card h4{
  font-size: 16px;
  margin: 0 0 14px;
}
.stat-card p,.summary-card p{
  margin: 0;
  color: #e66e2f;
  display: flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}
.stat-card strong,.summary-card strong{
  font-size: 72px;
  line-height: 1;
}
.stat-card b,.summary-card b{
  font-size: 30px;
}
.stat-card em,.summary-card em{
  font-style: normal;
  color: #12304d;
  font-size: 30px;
  font-weight: bold;
}
.stat-card small,.summary-card small{
  font-size: 13px;
  white-space: nowrap;
}
.deadline-note{
  color: white;
  line-height: 1.6;
  font-size: 14px;
  margin: 15px 34px 45px;
}
.period-list{
  display: grid;
  gap: 25px;
}
.period-card{
  min-height: 193px;
  border: 3px solid #1d5574;
  border-radius: 12px;
  color: white;
  padding: 25px 32px;
}
.period-card h2{
  font-size: 17px;
  margin: 0 0 10px;
}
.period-card p{
  margin: -20px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.period-card small{
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.period-card strong{
  color: #e87534;
  font-size: 29px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.period-card b{
  margin-left: -4px;
  font-size: 14px;
  white-space: nowrap;
}
.apply-dark{
  height: 68px;
  margin-top: 44px;
  font-size: 18px;
  border-radius: 12px;
}
.video-section{
  position: relative;
  margin-top: -64px;
  padding: 83px 28px 38px;
  text-align: center;
  background: #f6f2e9;
  clip-path: polygon(0 5%,100% 0,100% 100%,0 100%);
}
.eyebrow{
  font-family: serif;
  margin: 0;
  font-size: 16px;
}
.video-section>h2,.overview__heading h2{
  font-family: hiragino-mincho-pron,"Yu Mincho",serif;
  font-size: 28px;
  margin: 5px 0 15px;
  font-weight: bold;
}
.video-section>p:not(.eyebrow){
  font-size: 14px;
  line-height: 1.55;
  font-weight: normal;
}
.video-card{
  background: #fff;
  border-radius: 18px;
  text-align: left;
  padding: 20px 24px 23px;
  margin-top: 42px;
}
.video-heading{
  display: flex;
  align-items: center;
  gap: 22px;
}
.video-heading span{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e87534;
  color: white;
  text-align: center;
  padding-top: 13px;
  font-size: 9px;
  line-height: 1.1;
  font-weight: bold;
}
.video-section__grid > .video-card:nth-child(2) .video-heading span{
  background: #3b57af;
}
.video-section__grid > .video-card:nth-child(3) .video-heading span{
  background: #80ad3a;
}
.video-heading span b{
  font-size: 23px;
  font-weight: bold;
}
.video-heading strong{
  font-size: 16px;
}
.video-image{
  position: relative;
  margin-top: 16px;
}
.video-image img{
  display: block;
  width: 100%;
}
.video-card__learn-title{
  margin: 14px 0 0;
  color: #12304d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.video-card ul{
  list-style: none;
  padding: 7px 0 18px;
  margin: 0;
}
.video-card ul a{
  text-decoration: none;
  color: #12304d;
}
.video-card li{
  position: relative;
  padding: 12px 28px 12px 10px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}
.video-card li:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 10px;
  background: url("img/video-arrow.png") center / contain no-repeat;
  transform: translateY(-50%);
}
.video-button{
  display: block;
  text-align: center;
  padding: 17px;
  background: #071451;
  color: white;
  border-radius: 13px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin: auto;
}
.video-carousel__pagination{
  display: none;
}
.overview{
  padding: 47px 39px 0;
  background: #fff;
}
.overview .lead{
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.overview-panel{
  margin: 0 -25px;
  background: #EDE8DE;
  padding: 36px 10px 16px;
  border-radius: 17px 17px 0 0;
  text-align: center;
}
.overview-panel h3{
  font-family: hiragino-mincho-pron,"Yu Mincho",serif;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 21px;
}
.purpose{
  background: #fff;
  border-radius: 19px;
  padding: 38px 15px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.55;
  margin-bottom: 28px;
}
.purpose__break{
  display: block;
}
.summary-card{
  width: 300px;
  margin: 0;
  text-align: left;
  height: 214px;
}
.overview__summary-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}
.summary-card p{
  justify-content: flex-start;
}
.summary-card small{
  white-space: normal;
  font-weight: 500;
}
.overview-panel .eligibility{
  background: transparent;
  padding: 0;
}
.eligibility{
  background: #efebe2;
  padding: 32px 70px 70px;
}
.detail-grid{
  display: grid;
  gap: 35px;
}
.detail-grid article{
  min-height: 149px;
  padding: 26px 20px;
  border: 1px solid #b5b8b7;
  border-radius: 12px;
}
.detail-grid h3{
  margin: 0 0 6px;
  font-size: 18px;
  text-align: left;
  font-weight: bold;
  font-family: kozuka-gothic-pro,"Yu Gothic","Hiragino Kaku Gothic ProN",sans-serif;
}
.detail-grid p{
  margin: 0 0 0 -2px;
  line-height: 1.65;
  font-size: 14px;
  font-weight: normal;
}
.detail-grid__expense{
  text-align: left;
}
.expense-image-list{
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.expense-image-list figure{
  margin: 0;
}
.expense-image-list img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.expense-image-list figcaption{
  margin-top: 8px;
  margin-left: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.expense-image-list.expense-image-list--single{
  grid-template-columns: minmax(0, 1fr);
  max-width: 465px;
  margin-right: 0;
  margin-left: 0;
}
.detail-grid__expense .detail-grid__expense-note{
  margin: 20px 0 0;
  line-height: 1.65;
  font-size: 14px;
  font-weight: 500;
}
.final-apply{
  height: 80px;
  border-radius: 12px;
  margin: 45px -2px 0;
  font-size: 19px;
}
.to-top{
  position: fixed;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 62px;/* AIチャットボットリリース時に変更→ calc(3rem + (147px - 64px) / 2); */
  bottom: 40px;; /* AIチャットボットリリース時に変更→ (3rem + 147px + 97px);  */
  margin-left: 0;
  width: 72px;
  height: 72px;
  background: #071451;
  border: 1px solid #fff;
  border-radius: 50%;
}
/* ↓AIチャットボットリリース時にコメントアウト解除  */
/* body.is-ai-chat-guide-hidden .to-top{
  bottom: calc(3rem + 147px + 24px);
} */
.to-top img{
  width: 24px;
}
/* ↓AIチャットボットリリース時にコメントアウト解除  */
/* .ai-chat-guide{
  position: fixed;
  right: 32px;
  bottom: 202px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 238px;
  max-width: calc(100vw - 64px);
  padding: 18px 44px 18px 24px;
  color: #1b1b1b;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(7, 20, 81, .18);
}
.ai-chat-guide::after{
  content: "";
  position: absolute;
  right: 54px;
  bottom: -11px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  transform: rotate(45deg);
}
.ai-chat-guide.is-hidden{
  display: none;
}
.ai-chat-guide p{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  white-space: nowrap;
}
.ai-chat-guide__close{
  position: absolute;
  top: 9px;
  right: 11px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  color: #9a9a9a;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
} */
.address-organization {
  display: inline-block;
  margin-top: 8px;
}
.address-label {
  font-weight: bold;
}
.video-image {
  aspect-ratio: 16 / 9;
}
.video-image__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.document-bulk-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.document-bulk-download__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: #e87534;
  color: #fff;
  font-family: "kozuka-gothic-pro";
  font-weight: bold;
  cursor: pointer;
}
.document-bulk-download__button:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.document-bulk-download__button img {
  width: 20px;
  height: 20px;
}
.document-bulk-download__count {
  font-weight: normal;
  margin-left: -16px;
}
.document-bulk-download__status {
  margin: 0;
  min-height: 1em;
  color: #071451;
  text-align: center;
}
@media (min-width: 781px) {
  .pc {
    display: block;
  }
  body {
    background: #F6F3EC;
  }
  .site-shell {
    width: 100%;
    max-width: none;
    background: #F6F3EC;
    box-shadow: none;
  }
  .header {
    height: 126px;
    max-width: none;
    padding: 0 clamp(36px, 3.2vw, 53px);
    background: #fff;
  }
  .logo {
    flex: 0 0 auto;
    width: 126px;
    height: 83px;
    margin: auto 0;
  }
  .header__summary {
    display: block;
    flex: 0 1 clamp(300px, 22vw, 370px);
    margin-left: clamp(22px, 1.6vw, 25px);
    color: #707266;
    line-height: 1.25;
  }
  .header__summary p {
    margin: 0 0 6px;
    font-family: "Yu Gothic";
    font-size: 18px;
    font-weight: bold;
  }
  .header__summary span {
    display: block;
    font-family: "Yu Gothic";
    font-size: 12px;
    font-weight: bold;
  }
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 1.8vw, 42px);
    flex: 1 1 auto;
    margin-left: clamp(22px, 1.8vw, 28px);
    white-space: nowrap;
  }
  .header-nav a {
    color: #1B3552;
    font-family: "Yu Gothic";
    font-size: clamp(16px, 1.25vw, 18px);
    text-decoration: none;
    font-weight: bold;
  }
  .subsidy-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 56px;
    padding: 0 clamp(36px, 3.2vw, 53px);
    text-align: left;
  }
  .subsidy-banner__label {
    margin: 0;
    padding: 6px 18px;
    font-size: 18px;
  }
  .subsidy-banner__label::before {
    content: "！";
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
  }
  .subsidy-banner__link {
    font-size: 18px;
    white-space: nowrap;
  }
  .compact {
    flex: 0 0 auto;
    width: clamp(190px, 14.6vw, 239px);
    max-width: none;
    height: 67px;
    margin: 0 0 0 clamp(24px, 3.3vw, 54px);
    font-size: 18px;
  }
  .menu {
    display: none;
  }
  .top-visual {
    --top-bg-width: 100%;
    --top-bg-height: calc(100vw * 898 / 1640);
    padding: 66px 0 137px;
    text-align: center;
    background-image: url("img/pc-top-content-bg.png"), url("img/pc-top-bg.png");
    background-repeat: no-repeat, no-repeat;
    background-size: var(--top-bg-width) calc(100% - var(--top-bg-height) + 16px), var(--top-bg-width) auto;
    background-position: center calc(var(--top-bg-height) - 16px), center top;
  }
  .hero-card {
    width: min(940px, calc(100vw - 80px));
    max-height: 537px;
    margin: 0 auto;
    padding: 42.5px 50px 36.5px;
    border-radius: 12px;
    background: rgba(201, 179, 113, 0.5);
  }
  .hero-card p {
    font-size: 20px;
  }
  .hero-card p:nth-of-type(1) {
    font-size: 26px;
  }
  .hero-card__label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-size: 24px;
  }
  .hero-card__label::before,
  .hero-card__label::after {
    content: "";
    width: 48px;
    height: 1px;
    background: currentColor;
  }
  .hero-card h1 {
    margin: 10px 0 20px;
    font-size: 58px;
    line-height: 1.15;
  }
  .hero-card h1 span {
    position: relative;
    left: 50%;
    display: block;
    width: max-content;
    max-width: none;
    margin: 0;
    white-space: nowrap;
    transform: translateX(-50%);
  }
  .hero-copy {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4!important;
    text-shadow: 0 0 7px rgba(83, 82, 82, 0.5);
  }
  .hero-copy strong {
    font-size: 26px;
  }
  .hero-copy__nowrap {
    position: relative;
    left: 50%;
    display: block;
    width: max-content;
    white-space: nowrap;
    text-wrap: nowrap;
    transform: translateX(-50%);
  }
  .check-link,
  .download {
    display: inline-flex;
    width: 318px;
    height: 67px;
    margin: 38px 12px 0;
    vertical-align: top;
    font-size: 16px;
  }
  .download {
    gap: 13.6px !important;
  }
  .guide-download {
    width: 400px;
  }
  .stat-list {
    grid-template-columns: repeat(2, 282px);
    justify-content: center;
    gap: 34px;
    width: min(914px, calc(100vw - 80px));
    max-width: none;
    margin: 35px auto 24px;
  }
  .stat-card {
    height: 159px;
    padding: 22px 28px 20px;
    border-radius: 12px;
    text-align: left;
  }
  .stat-card h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: -1px;
  }
  .stat-card p {
    justify-content: flex-start;
    gap: 8px;
  }
  .stat-card strong {
    font-size: 64px;
    font-family: helvetica-neue-lt-pro-cond, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .stat-card b {
    font-size: 24px;
    font-weight: 500;
  }
  .stat-card em {
    font-size: 24px;
  }
  .stat-card small {
    display: block;
    margin-top: -5px;
  }
  .deadline-note {
    max-width: 598px;
    margin: 0 auto 37px;
    color: #fff;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
  }
  .deadline-note br {
    display: none;
  }
  .period-list {
    grid-template-columns: repeat(auto-fit, 401px);
    justify-content: center;
    gap: 44px;
    width: min(846px, calc(100vw - 80px));
    max-width: none;
    margin: 0 auto;
  }
  .period-card {
    max-height: 191px;
    width: 401px;
    padding: 22px 39px 24px;
    border-color: rgba(45, 111, 139, .9);
    text-align: left;
  }
  .period-card h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
  }
  .period-card p {
    gap: 21px;
  }
  .period-card p:nth-of-type(1) {
    margin-top:-10px;
  }
  .period-card strong {
    font-size: 34px;
    font-weight: bolder;
  }
  .apply-dark {
    width: 364px;
    height: 67px;
    margin: 43px auto 0;
    border-radius: 8px;
    font-size: 20px;
  }
  .news-list {
    display: block;
    width: min(1010px, calc(100vw - 80px));
    margin: 17px auto 0;
    text-align: center;
    overflow: hidden;
  }
  .news-list h2 {
    margin: 0 0 18px;
    color: #fff;
    font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
    font-size: 30px;
    font-weight: 700;
  }
  .news-list__grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    width: 100%;
    overflow-x: auto;
    padding: 0 42px 18px;
    cursor: grab;
    scrollbar-width: none;
    touch-action: pan-y;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
  }
  .news-list__grid.is-dragging {
    cursor: grabbing;
  }
  .news-list__grid::-webkit-scrollbar {
    display: none;
  }
  .news-card {
    position: relative;
    flex: 0 0 260px;
    height: 162px;
    padding: 19px 19px 0px;
    border-radius: 8px;
    background: #fff;
    color: #12304d;
    text-align: left;
  }
  .news-card p {
    margin: 0 0 12px;
    color: #8e969e;
    font-size: 11px;
  }
  .news-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 51px;
    height: 27px;
    margin-right: 15px;
    border-radius: 8px;
    background: #e87534;
    color: #fff;
  }
  .news-card .news-card__tag--important {
    min-width: 51px;
    width: auto;
    background: #e87534;
  }
  .news-card .news-card__tag--notice {
    min-width: 72px;
    width: auto;
    background: #071451;
  }
  .news-card h3 {
    margin: 0 0 24px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.35;
  }
  .news-card time {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: #8e969e;
    font-size: 12px;
  }
  .video-section {
    margin-top: 0;
    padding: 26px max(40px, calc((100vw - 1180px) / 2)) 35px;
    clip-path: none;
    background: #f7f3eb;
  }
  .video-section > p:not(.eyebrow) {
    font-size: 16px;
    margin: 0;
  }
  .video-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 390px);
    justify-content: center;
    gap: 13px;
    width: min(1200px, calc(100vw - 80px));
    margin: 26px auto 0;
  }
  .video-card,
  .video-card--pc {
    display: flex;
    flex-direction: column;
    width: 390px;
    height: 740px;
    min-height: 0;
    margin: 0;
    padding: 19px 25px 23px;
  }
  .video-heading {
    min-height: 60px;
    gap: 21px;
  }
  .video-heading strong {
    font-size: 18px;
    font-weight: 500;
  }
  .video-section__grid > .video-card:nth-child(2) .video-heading span {
    background: #3b57af;
  }
  .video-section__grid > .video-card:nth-child(3) .video-heading span {
    background: #80ad3a;
  }
  .video-image {
    max-width: none;
  }
  .video-card ul,
  .video-card__learn-title,
  .video-button {
    max-width: none;
  }
  .video-card__learn-title {
    width: 322px;
    margin: 14px auto 0;
    font-size: 16px;
  }
  .video-card ul {
    flex: 1 1 auto;
    padding: 5px 0 12px;
    margin: 0 auto;
    width: 322px;
  }
  .video-card li {
    padding: 7px 28px 10px 5px;
    height: 44px;
  }
  .video-button {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 14px;
    width: 294px;
    height: 54px;
  }
  .overview {
    padding: 0 max(40px, calc((100vw - 1080px) / 2)) 0;
    background: #f7f3eb;
    text-align: left;
  }
  .overview__header {
    display: block;
    margin-bottom: 22px;
    text-align: center;
  }
  .overview__heading {
    margin-left: 0;
  }
  .overview__header .eyebrow {
    margin: 0;
  }
  .overview__header h2 {
    margin: 5px 0 0;
  }
  .overview__header .lead {
    margin: 15px 0 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  }
  .overview-panel {
    margin: 0 auto 38px;
    padding: 40px 74px 42px 75px;
    border-radius: 16px;
  }
  .overview-panel .eligibility {
    padding: 0;
  }
  .purpose {
    max-width: none;
    margin-bottom: 23px;
    padding: 30px 30px;
    text-align: center;
  }
  .purpose br {
    display: none;
  }
  .purpose .purpose__break {
    display: block;
  }
  .overview__summary-list {
    grid-template-columns: repeat(2, 300px);
    gap: 13px;
    margin-bottom: 32px;
  }
  .summary-card {
    margin: 0;
    height: 210px;
    padding: 34px 0 20px 19px;
    border-radius: 12px;
  }
  .summary-card h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .summary-card p {
    gap: 8px;
  }
  .summary-card strong {
    font-size: 84px;
    font-family: helvetica-neue-lt-pro-cond, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .summary-card b {
    font-size: 32px;
    font-weight: bold;
  }
  .summary-card em {
    font-size: 32px;
    font-weight: bold;
  }
  .summary-card small {
    display: block;
    margin-top: -5px;
  }
  .detail-grid {
    width: 613px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .detail-grid article {
    width: 100%;
    height: auto;
    padding: 19px 23px;
    text-align: left;
  }
  .detail-grid__expense {
    margin: 0 auto;
  }
  .expense-image-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .final-apply {
    width: 425px;
    height: 78px;
    margin: 33px auto 0;
    border-radius: 8px;
    font-size: 22px;
  }
  .pc-continuation {
    display: block;
  }
  .pc-placeholder-icon--check,
  .pc-placeholder-icon--procedure {
    width: 56px;
    height: 47.76px;
  }
  .pc-placeholder-icon--result {
    width: 49px;
    height: 49px;
  }
  .pc-placeholder-icon--heading {
    width: 98px;
    height: 84px;
  }
  .pc-placeholder-icon--support {
    width: 68px;
    height: 58px;
  }
  .pc-placeholder-icon--process {
    width: 78px;
    height: 78px;
  }
  .pc-placeholder-icon--download {
    width: 16px;
    height: 16px;
  }
  .pc-placeholder-icon--search {
    width: 25px;
    height: 25px;
  }
  .pc-section-heading {
    text-align: center;
  }
  .pc-section-heading p,
  .pc-section-heading span {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
  }
  .pc-section-heading h2 {
    margin: 15px 0;
    font-family: "Hiragino Mincho ProN";
    font-size: 32px;
    font-weight: bold;
    line-height: 1.25;
  }
  .pc-section-heading--dark {
    color: #fff;
  }
  .eligibility-check {
    padding: 78px max(40px, calc((100vw - 1080px) / 2)) 92px;
    background: #071451;
  }
  .check-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: stretch;
    width: min(780px, calc(100vw - 80px));
    margin: 55px auto 0;
  }
  .check-tabs__item {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    background: #f7f3eb;
    color: #071451;
    font-family: "kozuka-gothic-pro";
    font-size: 18px;
    font-weight: bold;
}
  .check-tabs__item.is-active {
    border: 3px solid #fff;
    border-bottom: 0;
    background: #163a5a;
    color: #fff;
  }
  .check-panel {
    width: min(1080px, calc(100vw - 80px));
    margin: 0 auto;
    padding: 62px 48px 67px;
    border-radius: 16px;
    background: #EDE8DE;
  }
  .check-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 58px;
    row-gap: 20px;
  }
  .check-panel__group-heading {
    display: flex;
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    min-height: 48px;
    color: #12304d;
  }
  .check-panel__group-heading strong {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 34px 10px 18px;
    border-radius: 4px;
    background: #163a5a;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
  }
  .check-panel__group-heading span {
    padding-left: 0;
    border-left: 0;
    color: #12304d;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
  }
  .check-panel__group-heading--secondary {
    margin-top: 20px;
  }
  .check-panel__note {
    margin: 34px 0 0;
    color: #12304d;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .check-panel__question {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #12304d;
    font: inherit;
    font-size: 17px;
    line-height: 1.8;
    min-height: 88px;
    text-align: left;
    cursor: pointer;
  }
  .check-panel__question-icon {
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border: 2px solid #C1B496;
    border-radius: 10px;
    background-color: #E3DED2;
    background-image: url("img/check_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 11px;
  }
  .check-panel__question.is-checked .check-panel__question-icon {
    border-color: #163a5a;
    background-color: #163a5a;
    background-image: url("img/check_on.png");
  }
  .check-panel__question:focus-visible {
    outline: 3px solid #e87534;
    outline-offset: 6px;
  }
  .check-panel__question-text {
    display: block;
    text-box: trim-start cap alphabetic;
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
  }
  .check-panel__question-title {
    display: block;
    font-weight: 700;
    line-height: 1.5;
  }
  .check-panel__question-lead {
    display: block;
    margin-top: 7px;
    font-size: .92em;
    line-height: 1.5;
  }
  .check-panel__question-list {
    display: block;
    margin: 6px 0 0;
    font-size: .86em;
    line-height: 1.7;
  }
  .check-panel__question-list > span {
    position: relative;
    display: block;
    padding-left: 1em;
  }
  .check-panel__question-list > span::before {
    content: "□";
    position: absolute;
    left: 0;
  }
  .check-panel__question-list > span + span {
    margin-top: 2px;
  }
  .check-panel__question-sublist {
    display: block;
    margin: 2px 0 0 1em;
  }
  .check-panel__question-sublist span {
    position: relative;
    display: block;
    padding-left: 1em;
  }
  .check-panel__question-sublist span::before {
    content: "・";
    position: absolute;
    left: 0;
  }
  .check-result {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 55px;
    padding: 28px 34px;
    border: 1px solid #707070;
    border-radius: 12px;
    background: #F6F3EC;
}
  .check-result::before {
    content: "";
    position: absolute;
    top: -10.5px;
    left: 65px;
    width: 18px;
    height: 18px;
    border-top: 1px solid #707070;
    border-left: 1px solid #707070;
    background: #F6F3EC;
    transform: rotate(45deg)
    skew(
      calc((90deg - 60deg) / 2),
      calc((90deg - 60deg) / 2)
    );
}
  .check-result h3 {
    margin: 0 0 -5px;
    font-size: 18px;
    font-weight: bold;
  }
  .check-result p {
    margin: 0;
    font-size: 16px;
  }
  .support-section {
    padding: 74px max(40px, calc((100vw - 1132px) / 2)) 58px;
    background: #f7f3eb;
  }
  .support-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 68px;
    max-width: 1132px;
    margin: 0 auto;
  }
  .support-info__heading {
    display: flex;
    align-items: center;
    margin-bottom: 19px;
  }
  .support-info__heading p {
    margin: 0;
    font-family: "Hiragino Mincho ProN";
    font-size: 20px;
    font-weight: bold;
  }
  .support-info__heading h2,
  .support-form__header h2,
  .process-section h2,
  .application-section h2,
  .faq-section h2,
  .contact-section h2 {
    margin: 0;
    font-family: "Hiragino Mincho ProN";
    font-size: 34px;
    font-weight: bold;
    line-height: 1.25;
  }
  .support-info__lead {
    width: fit-content;
    margin: 0 0 44px 30px;
    font-family: "kozuka-gothic-pro";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
  }
  .support-card {
    width: 538px;
    padding: 30px 36px;
    border-radius: 10px;
    background: #fff;
  }
  .support-card + .support-card {
    margin-top: 40px;
  }
  .support-card__title {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d8d8d8;
  }
  .support-card h3 {
    margin: 0;
    padding-left: 1em;
    text-indent: -1em;
    font-family: "Hiragino Mincho ProN";
    font-size: 20px;
    font-weight: bold;
    line-height: 1.45;
  }
  .support-card p {
    margin: 24px 15px;
    font-family: "kozuka-gothic-pro";
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }
  .support-card dl {
    display: grid;
    grid-template-columns: 63px 1fr;
    gap: 28px 18px;
    margin: 0 15px;
    line-height: 1.8;
  }
  .support-card dt {
    display: grid;
    place-items: center;
    width: 63px;
    height: 26px;
    border-radius: 4px;
    background: #dbe4f2;
    font-size: 12px;
    font-weight: bold;
  }
  .support-card dd {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
  }
  .support-form__iframe {
    display: block;
    width: 100%;
    height: 1182px;
  }
  .support-form__header {
    padding: 28px 30px 24px;
    background: #071451;
    color: #fff;
    border-radius: 10px 10px 0 0   ;
    -webkit-border-radius: 10px 10px 0 0   ;
    -moz-border-radius: 10px 10px 0 0   ;
    -ms-border-radius: 10px 10px 0 0   ;
    -o-border-radius: 10px 10px 0 0   ;
}
  .support-form__header p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 0;
    font-size: 14px;
  }
  .support-form label,
  .support-form__field,
  .support-form__note {
    display: block;
    margin-inline: 30px;
  }
  .support-form label {
    margin-top: 18px;
    font-size: 14px;
  }
  .support-form__field {
    margin-top: 22px;
  }
  .support-form__field span {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
  }
  .support-form__field em {
    color: #e87534;
    font-style: normal;
  }
  .support-form input[type="text"],
  .support-form input[type="tel"],
  .support-form input[type="email"],
  .support-form textarea {
    width: 100%;
    min-height: 55px;
    padding: 0 24px;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    font: inherit;
    font-size: 14px;
  }
  .support-form textarea {
    min-height: 56px;
    padding-top: 16px;
  }
  .support-form__note {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.7;
  }
  .support-form button {
    display: block;
    width: calc(100% - 120px);
    height: 59px;
    margin: 40px auto 12px;
    border: 0;
    border-radius: 8px;
    background: #e87534;
    color: #fff;
    font: inherit;
    font-size: 16px;
  }
  .support-form small {
    display: block;
    text-align: center;
    color: #777;
  }
  .process-section {
    padding: 84px max(40px, calc((100vw - 863px) / 2)) 92px;
    background: #071451;
  }
  .process-section h2 {
    margin: 0 0 14px;
    font-size: 28px;
  }
  .process-list {
    max-width: 863px;
    margin: 50px auto 0;
  }
  .process-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 34px auto 0;
  }
  .process-tabs__item {
    min-width: 178px;
    min-height: 48px;
    padding: 10px 24px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  .process-tabs__item.is-active {
    background: #fff;
    color: #071451;
  }
  .process-relation {
    display: none;
    max-width: 863px;
    margin: 46px auto 0;
    padding: 44px 42px;
    border-radius: 12px;
    background: #fff;
  }
  .process-relation[hidden] {
    display: none !important;
  }
  .process-relation.is-visible {
    display: block;
  }
  .process-relation img {
    display: block;
    width: 100%;
    height: auto;
  }
  .process-relation__note {
    margin: 24px 0 0;
    color: #12304d;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
  }
  .process-card {
    position: relative;
    display: grid;
    grid-template-columns: 71px 82px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 155px;
    padding: 37px 36px;
    border-radius: 12px;
    background: #fff;
}
  .process-card + .process-card {
    margin-top: 47px;
  }
  .process-card + .process-card::before {
    content: "";
    position: absolute;
    top: -31px;
    left: 50%;
    width: 42px;
    height: 15px;
    background-image: url('img/pc-process-arrow.png');
    background-position: center;
    background-size: contain;
  }
  .process-card__number span {
    display: grid;
    place-items: center;
    width: 71px;
    height: 26px;
    border-radius: 4px;
    background: #dbe4f2;
    font-size: 14px;
    font-weight: bold;
  }
  .process-card__number b {
    display: block;
    width: fit-content;
    margin: 12px auto 0;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
  }
  .process-card h3 {
    margin: 0 0 18px;
    font-family: "kozuka-gothic-pro";
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
  }
  .process-card p {
    margin: 0;
    font-family: "kozuka-gothic-pro";
    font-size: 18px;
    line-height: 1.4;
    white-space: pre-line;
  }
  .application-section {
    padding: 56px max(40px, calc((100vw - 1000px) / 2)) 0;
    background: #f7f3eb;
  }
  .application-section h2 {
    margin: 0 0 10px;
    font-size: 28px;
  }
  .procedure-card {
    max-width: 1000px;
    margin: 46px auto 42px;
    padding: 45px 50px 90px;
    border-radius: 12px;
    background: #fff;
}
  .procedure-card h3 {
    margin: 0 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    font-family: "Kozuka Gothic Pro";
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  .procedure-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .procedure-card__grid > div + div {
    padding-left: 60px;
    border-left: 1px solid #ddd;
  }
  .procedure-card h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px;
    font-family: "Kozuka Gothic Pro";
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
  }
  .procedure-card p {
    margin: 0 0 30px;
    font-family: "kozuka-gothic-pro";
    font-size: 16px;
    line-height: 1.8;
    white-space: nowrap;
  }
  .procedure-card__button {
    width: 294px;
    height: 62px;
    border-radius: 999px;
    font-family: "kozuka-gothic-pro";
    font-size: 16px;
  }
  .document-list {
    max-width: 1000px;
    margin: 0 auto;
  }
  .document-list > h2,
  .faq-section > h2 {
    margin-bottom: 12px;
    text-align: center;
  }
  .document-list > p {
    margin: 0 0 25px;
    font-size: 16px;
    text-align: center;
  }
  .document-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 38px;
  }
  .document-tabs button {
    min-width: 119px;
    height: 56px;
    border: 1px solid #707070;
    border-radius: 12px;
    background: transparent;
    color: #071451;
    font-family: "kozuka-gothic-pro";
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}
  .document-tabs button.is-active {
    min-width: 154px;
    border-color: #153d60;
    background: #153d60;
    color: #fff;
  }
  .document-category-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 38px;
  }
  .document-category-filter__label {
    flex: 0 0 auto;
    width: 130px;
    font-size: 16px;
    font-weight: bold;
    text-align: right;
  }
  .document-tabs--category {
    margin-bottom: 0;
  }
  .document-audience-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 38px;
  }
  .document-audience-filter__label {
    display: block;
    flex: 0 0 auto;
    width: 130px;
    margin-bottom: 0;
    color: #071451;
    font-size: 16px;
    font-weight: bold;
    text-align: right;
  }
  .document-tabs--audience {
    margin-bottom: 0;
  }
  .document-bulk-download {
    margin: 0 0 20px;
  }
  .document-bulk-download__button {
    height: 56px;
    padding: 0 32px;
    font-size: 15px;
  }
  .document-bulk-download__status {
    font-size: 13px;
  }
  .document-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px 16px;
  }
  .document-card {
    display: flex;
    flex-direction: column;
    min-height: 205px;
    padding: 30px 30px 20px;
    border-radius: 12px;
    background: #fff;
}
  .document-card h3 {
    margin: 0 0 10px;
    font-family: "kozuka-gothic-pro";
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
  }
  .document-card__audience {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 78px;
    height: 26px;
    margin: -4px 0 10px;
    padding: 0 14px;
    border-radius: 4px;
    background: #153d60;
    color: #fff;
    font-family: "kozuka-gothic-pro";
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }
  .document-card p {
    margin: 0 0 10px;
    font-family: "kozuka-gothic-pro";
    font-size: 13px;
    line-height: 1.5;
  }
  .document-card small {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    font-family: "kozuka-gothic-pro";
    font-size: 10px;
    line-height: 1;
  }
  .document-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    height: 39px;
    margin-top: 10px;
    border-radius: 4px;
    background: #071451;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
  }
  .document-card__actions {
    display: grid;
    gap: 10px;
    margin-top: 10px;
  }
  .document-card__actions .document-card__button {
    margin-top: 0;
  }
  .document-card__actions .document-card__button--example {
    background: #e87534;
  }
  .document-card__example-icon {
    display: none;
  }
  .document-card__button--example::before {
    width: 16px;
    height: 20px;
    background: url("img/paper.png") center / contain no-repeat;
    content: "";
  }
  .document-list__empty {
    margin: 32px 0 0;
    color: #071451;
    font-size: 15px;
    text-align: center;
  }
  .guide-document-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px 16px;
    width: min(1000px, calc(100vw - 80px));
    margin: 34px auto 42px;
    text-align: left;
  }
  .guide-document-list--two {
    grid-template-columns: repeat(2, calc((100% - 32px) / 3));
    justify-content: center;
  }
  .guide-document-card {
    min-height: 205px;
  }
  .faq-section {
    padding: 115px max(40px, calc((100vw - 1000px) / 2)) 90px;
    background: #f7f3eb;
  }
  .faq-section h2 {
    margin: 0 0 10px;
    font-size: 28px;
  }
  .faq-section > p {
    margin: 0 0 25px;
    font-size: 16px;
    text-align: center;
  }
  .faq-search {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 47px;
    margin-bottom: 50px;
    padding: 0 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
  .faq-search:focus-within {
    border-color: #0966cf;
    box-shadow: 0 0 0 4px rgba(9, 102, 207, .14);
  }
  .faq-search input {
    width: 100%;
    border: 0;
    font-family: "kozuka-gothic-pro";
    font-size: 16px;
  }
  .faq-search input:focus {
    outline: 0;
  }
  .faq-section h3 {
    margin: 0 0 27px;
    font-family: "kozuka-gothic-pro";
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }
  .faq-list + h3 {
    margin-top: 78px;
  }
  .faq-list.faq-list--compact {
    margin-bottom: 44px;
  }
  .faq-item {
    --faq-answer-height: 0px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }
  .faq-item + .faq-item {
    margin-top: 14px;
  }
  .faq-item__question,
  .faq-item__answer {
    display: grid;
    grid-template-columns: 55px 170px 1fr 26px;
    align-items: center;
    gap: 20px;
    min-height: 84px;
    padding: 20px 30px;
  }
  .faq-item__question {
    cursor: pointer;
  }
  .faq-item__question:focus-visible {
    outline: 2px solid #1e9aff;
    outline-offset: -4px;
  }
  .faq-item__question span,
  .faq-item__answer span {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1d3196;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .faq-item__answer span {
    border: 1px solid #1d3196;
    background: #fff;
    color: #09164B;
  }
  .faq-item__question b {
    display: grid;
    place-items: center;
    justify-self: start;
    min-width: 132px;
    height: 27px;
    padding: 0 19px;
    border-radius: 4px;
    background: #f8d9ca;
    color: #8b4a31;
    font-family: "kozuka-gothic-pro";
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
  }
  .faq-list--compact b {
    background: #dbe4f2;
    color: #43546a;
  }
  .faq-item h4 {
    margin: 0;
    font-family: "kozuka-gothic-pro";
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
  }
  .faq-item i {
    position: relative;
    display: block;
    justify-self: center;
    width: 26px;
    height: 26px;
    color: #777;
    font-style: normal;
  }
  .faq-item i::before,
  .faq-item i::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 25px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .28s ease, opacity .28s ease;
  }
  .faq-item i::before {
    transform: translate(-50%, -50%);
  }
  .faq-item i::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .faq-item.is-open i::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .faq-item__answer {
    grid-template-columns: 55px 1fr;
    max-height: 0;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 1px solid #e5e5e5;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height .36s ease, padding .36s ease, opacity .24s ease, transform .36s ease;
  }
  .faq-item.is-open .faq-item__answer {
    max-height: var(--faq-answer-height);
    padding-top: 30px;
    padding-bottom: 30px;
    opacity: 1;
    transform: translateY(0);
  }
  .faq-item__answer p {
    max-width: 770px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }
  .faq-item__answer small {
    display: block;
    margin-top: 10px;
    font-size: 10px;
  }
  .faq-empty {
    margin: 0;
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    font-size: 16px;
  }
  .faq-section__contact {
    margin: 48px 0 14px;
    text-align: center;
  }
  .faq-section__button {
    width: 364px;
    height: 67px;
    margin: 0 auto;
    border-radius: 8px;
    font-family: "kozuka-gothic-pro";
    font-size: 20px;
  }
  .contact-section {
    padding: 82px max(40px, calc((100vw - 1000px) / 2)) 84px;
    background: #071451;
    color: #fff;
  }
  .contact-section__inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .contact-section h2 {
    margin: 0 0 12px;
    font-size: 28px;
    text-align: center;
  }
  .contact-section > p,
  .contact-section__inner > p {
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
  }
  .contact-check {
    padding: 40px 35px;
    border-radius: 12px;
    background: #fff;
    color: #071451;
}
  .contact-check h3 {
    margin: 0 0 15px;
    font-family: "kozuka-gothic-pro";
    font-size: 22px;
    font-weight: bold;
  }
  .contact-check h3:nth-of-type(2) {
    margin-top: 20px;
  }
  .contact-check ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .contact-check li {
    font-size: 16px;
    height: 1.8em;
    line-height: 1.8em;
  }
  .contact-check ul:nth-of-type(1) li::before {
    content: "";
    display: inline-block;
    width: 14.5px;
    height: 10px;
    margin: auto 24px 2px 0;
    background-image: url('img/pc-icon-check-orange.png');
    background-position: center;
    background-size: contain;
  }
  .contact-check ul:nth-of-type(2) li::before {
    content: "・";
    margin-right: 0;
    color: #071451;
  }
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 47px;
    margin-top: 40px;
  }
  .contact-cards article,
  .contact-address {
    border-radius: 12px;
    background: #fff;
    color: #071451;
}
  .contact-cards article {
    padding: 28px 24px;
  }
  .contact-cards h3,
  .contact-address h3 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
  }
  .contact-cards strong {
    display: block;
    margin: 5px 0 0;
    color: #e87534;
    font-family: "Helvetica Neue";
    font-size: 32px;
    font-weight: bold;
    font-stretch: condensed;
    line-height: 1.4;
  }
  .contact-cards article:nth-of-type(3) strong {
    margin-top: 13px;
    min-height: 45px;
    font-size: 18px;
  }
  .contact-cards p {
    margin: 22px 0 0;
    font-size: 14px;
    line-height: 1;
  }
  .contact-cards article:nth-of-type(3) p {
    margin-top: 10px;
  }
  .contact-address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 43px;
    padding: 40px 33px;
  }
  .contact-address p {
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1;
  }
  .contact-address div:nth-of-type(1) p {
    margin-top: 10px;
    line-height: 2.2;
  }
  .contact-address .address-organization {
    margin-top: 0;
  }
  .contact-address div:nth-of-type(2) p {
    margin-top: 10px;
    line-height: 2.2;
  }
  .contact-address div:nth-of-type(2) p:nth-of-type(1),
  .contact-address div:nth-of-type(2) p:nth-of-type(2) {
    margin-bottom: 30px;
  }
  .footer {
    padding: 0 max(40px, calc((100vw - 1050px) / 2)) 58px;
    background: #071451;
    color: #fff;
    box-shadow: 0 -1px 0 #071451;
  }
  .footer__inner {
    max-width: 1050px;
    margin: 0 auto;
  }
  .footer__about {
    display: inline-block;
    width: 45%;
    padding-left: 25px;
    vertical-align: top;
  }
  .footer__about h2 {
    margin: 0 0 5px;
    font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
    font-size: 22px;
    font-weight: bold;
  }
  .footer__about p {
    margin: 0 0 30px;
    font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
  }
  .footer__about p:nth-of-type(2) {
    max-width: 390px;
    margin: 0;
    font-family: "kozuka-gothic-pro";
    font-weight: 300;
    line-height: 2.2;
  }
  .footer__nav {
    display: inline-grid;
    grid-template-columns: repeat(2, 150px);
    grid-template-rows: auto repeat(5, auto);
    grid-auto-flow: column;
    gap: 5px 50px;
    width: 45%;
    padding-left: 25px;
    vertical-align: top;
  }
  .footer__nav h3 {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
  }
  .footer__nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
  }
  .footer__bottom {
    display: flex;
    justify-content: flex-end; /*  space-between; */
    margin-top: 96.5px;
    padding-top: 35.5px;
    border-top: 1px solid rgba(255,255,255,.65);
    font-size: 12px;
    line-height: 1.8;
  }
  .footer__bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
  }
  .footer__bottom p:nth-of-type(2) {
    text-align: right;
  }
}
@media (min-width: 781px) and (max-width: 1180px) {
  .header {
    padding-inline: 28px;
  }
  .header__summary {
    flex: 1 1 260px;
    min-width: 0;
  }
  .header-nav {
    display: none;
  }
  .compact {
    width: 200px;
    margin-left: 24px;
  }
  .menu {
    display: grid;
    flex: 0 0 31px;
    margin-left: clamp(16px, 2vw, 28px);
  }
  .hero-card h1 span {
    position: static;
    display: inline;
    width: auto;
    max-width: 100%;
    white-space: normal;
    text-wrap: wrap;
    transform: none;
  }
  .hero-card h1 .pc {
    display: none;
  }
  .hero-card {
    max-height: none;
  }
  .hero-copy__nowrap {
    left: auto;
    width: auto;
    max-width: 100%;
    white-space: normal;
    text-wrap: wrap;
    transform: none;
  }
  .subsidy-banner {
    gap: 20px;
    padding-inline: 40px;
  }
  .subsidy-banner__label,
  .subsidy-banner__link {
    font-size: 16px;
  }
  .subsidy-banner__link {
    white-space: normal;
    text-align: right;
  }
  .support-info {
    min-width: 0;
  }
  .support-card {
    width: 100%;
  }
  .support-section {
    padding-inline: 40px;
  }
  .support-section__inner {
    display: block;
    width: min(640px, calc(100vw - 80px));
    max-width: none;
  }
  .support-info__heading {
    margin-left: -20px;
  }
  .support-info__lead {
    width: auto;
    margin-left: 0;
  }
  .support-form {
    margin-top: 44px;
  }
  .tablet-break {
    display: block;
  }
  .procedure-card p {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .deadline-note {
    width: min(598px, calc(100vw - 80px));
  }
  .eligibility-check .pc-section-heading,
  .check-tabs,
  .check-panel {
    width: min(1080px, calc(100vw - 80px));
    margin-left: auto;
    margin-right: auto;
  }
  .check-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: stretch;
    gap: 0;
    margin-top: 32px;
  }
  .check-tabs__item {
    width: 100%;
    min-width: 0;
    min-height: 80px;
    padding: 12px 4px;
    border-color: #d0cabd;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    line-height: 1.25;
  }
  .check-panel {
    margin-top: 0;
    padding: 32px 24px 34px;
    border-radius: 0 0 12px 12px;
  }
  .check-panel__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .check-panel__question {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    font-size: 15px;
  }
  .check-panel__question-text {
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
}
}
@media (max-width: 780px) {
  .sp {
    display: inline;
  }
  .header-nav {
    display: none;
  }
  .header-nav a {
    display: grid;
    place-items: center;
    min-height: 38px;
    padding: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    color: #1B3552;
    background: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.35;
  }
  .news-list,
  .video-card--pc,
  .pc-continuation {
    display: block;
  }
  .stat-list,
  .period-list {
    grid-template-columns: 1fr;
  }
  .stat-card {
    padding-inline: clamp(24px, 7vw, 32px);
  }
  .summary-card {
    margin: 0;
    padding-inline: clamp(24px, 7vw, 32px);
  }
  .apply-dark {
    margin-top: 44px;
  }
  .news-list {
    display: none;
  }
  .news-list h2 {
    margin: 0 0 16px;
    color: #fff;
    font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
    font-size: 26px;
    font-weight: 700;
  }
  .news-list__grid,
  .video-section__grid,
  .check-panel__grid,
  .support-section__inner,
  .procedure-card__grid,
  .document-list__grid,
  .contact-cards,
  .contact-address,
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .news-card {
    position: relative;
    min-height: 142px;
    padding: 18px 18px 42px;
    border-radius: 8px;
    background: #fff;
    color: #12304d;
  }
  .news-card p {
    margin: 0 0 12px;
    color: #8e969e;
    font-size: 11px;
  }
  .news-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 51px;
    height: 27px;
    margin-right: 12px;
    border-radius: 8px;
    background: #e87534;
    color: #fff;
  }
  .news-card:nth-child(n+3) span {
    min-width: 72px;
    background: #071451;
  }
  .news-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
  }
  .news-card time {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: #8e969e;
    font-size: 12px;
  }
  .video-card,
  .video-card--pc {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  .video-card--pc + .video-card--pc {
    margin-top: 0;
  }
  .pc-placeholder-icon--check,
  .pc-placeholder-icon--procedure {
    width: 34px;
    height: 34px;
  }
  .pc-placeholder-icon--result {
    width: 65px;
    height: 56px;
  }
  .pc-placeholder-icon--support {
    width: 68px;
    height: 58px;
  }
  .pc-placeholder-icon--heading {
    width: 98px;
    height: 85px;
    margin-left: -18px;
  }
  .pc-placeholder-icon--process {
    width: 52px;
    height: 52px;
  }
  .pc-placeholder-icon--download {
    width: 16px;
    height: 16px;
  }
  .pc-placeholder-icon--search {
    width: 22px;
    height: 22px;
  }
  .pc-section-heading {
    text-align: center;
  }
  .pc-section-heading p,
  .pc-section-heading span {
    display: block;
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
  }
  .pc-section-heading h2,
  .support-info__heading h2,
  .support-form__header h2,
  .process-section h2,
  .application-section h2,
  .faq-section h2,
  .contact-section h2 {
    margin: 0px 0 9px;
    font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
  }
  .pc-section-heading--dark {
    color: #fff;
  }
  .eligibility-check,
  .process-section,
  .contact-section,
  .footer {
    background: #071451;
    color: #fff;
  }
  .eligibility {
    padding-inline: clamp(55px, 16vw, 140px);
  }
  .support-section,
  .application-section,
  .faq-section {
    background: #f7f3eb;
  }
  .support-info__heading,
  .support-card__title,
  .procedure-card h4 {
    display: flex;
    align-items: flex-start;
  }
  .support-info__heading p {
    margin: 10px 0 -5px;
    font-size: 20px;
    font-weight: 600;
    font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
    text-align: left;
  }
  .support-card,
  .support-form,
  .procedure-card,
  .document-card,
  .faq-item,
  .faq-empty,
  .contact-check,
  .contact-cards article,
  .contact-address {
    border-radius: 8px;
    background: #fff;
    color: #071451;
  }
  .support-card + .support-card {
    margin-top: 35px;
  }
  .support-form {
    padding-bottom: 24px;
  }
  .support-form__header p {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.6;
  }
  .support-form__header p span {
    display: block;
  }
  .support-form label,
  .support-form__field,
  .support-form__note {
    display: block;
    margin-inline: 20px;
  }
  .support-form label,
  .support-form__field {
    margin-top: 18px;
  }
  .support-form__field span {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
  }
  .support-form__field em {
    color: #e87534;
    font-style: normal;
  }
  .support-form input[type="text"],
  .support-form input[type="tel"],
  .support-form input[type="email"],
  .support-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    font: inherit;
    font-size: 14px;
  }
  .support-form textarea {
    min-height: 90px;
    padding-top: 14px;
    resize: vertical;
  }
  .support-form__note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.7;
  }
  .support-form button {
    display: block;
    width: calc(100% - 40px);
    min-height: 54px;
    margin: 28px auto 12px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font: inherit;
    font-size: 15px;
  }
  .support-form small {
    display: block;
    text-align: center;
    color: #777;
  }
  .procedure-card,
  .document-list,
  .faq-section,
  .contact-section__inner,
  .footer__inner {
    max-width: 500px;
    margin-inline: auto;
  }
  .procedure-card h3 {
    margin: 0 0 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
  }
  .procedure-card__button {
    width: 100%;
    min-height: 67px;
    border-radius: 999px;
  }
  .document-list > h2,
  .faq-section > h2 {
    margin: 0 0 10px;
    text-align: center;
  }
  .document-list > p,
  .faq-section > p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
  }
  .faq-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    margin-bottom: 24px;
    padding: 0 14px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #fff;
  }
  .faq-search:focus-within {
    border-color: #0966cf;
    box-shadow: 0 0 0 4px rgba(9, 102, 207, .14);
  }
  .faq-search input {
    width: 100%;
    border: 0;
    font: inherit;
    font-size: 14px;
  }
  .faq-search input:focus {
    outline: 0;
  }
  .faq-list + h3 {
    margin-top: 36px;
  }
  .faq-item__question,
  .faq-item__answer {
    display: grid;
    gap: 10px;
    min-height: 70px;
    padding: 16px 14px;
  }
  .faq-item__question span,
  .faq-item__answer span {
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1d3196;
    color: #fff;
    font-weight: bold;
  }
  .faq-item__answer span {
    border: 1px solid #1d3196;
    background: #fff;
    color: #1d3196;
  }
  .faq-list--compact .faq-item:nth-child(n+3) b {
    background: #dbe4f2;
    color: #43546a;
  }
  .faq-item i {
    position: relative;
    display: block;
    grid-column: 3 / 4;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    width: 22px;
    height: 22px;
    color: #777;
    font-style: normal;
  }
  .faq-item i::before,
  .faq-item i::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .28s ease, opacity .28s ease;
  }
  .faq-item i::before {
    transform: translate(-50%, -50%);
  }
  .faq-item i::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .faq-item.is-open i::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .faq-empty {
    margin: 0;
    padding: 24px 16px;
    text-align: center;
    font-size: 14px;
  }
  .faq-section__contact {
    margin: 37px 0 21px !important;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
  }
  .faq-section__button {
    width: 320px;
    min-height: 67px;
    margin: 0 auto;
    border-radius: 8px;
    font-size: 20px;
  }
  .contact-section__inner > p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
  }
  .contact-check h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 500;
  }
  .contact-check h3:nth-of-type(2) {
    margin: 14px 0 17px;
    line-height: 1.4;
  }
  .contact-check ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 1.7;
  }
  .contact-check li {
    display: flex;
    align-items: baseline;
    height: auto;
    line-height: 1.7;
  }
  .contact-check ul:nth-of-type(1) li::before {
    content: "";
    flex: 0 0 15px;
    width: 15px;
    height: 10.5px;
    margin: 0 24px 0 9px;
    background-image: url("img/contact_check.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-1px);
  }
  .contact-check ul:nth-of-type(2) {
    gap: 4px;
  }
  .contact-check ul:nth-of-type(2) li::before {
    content: "・";
    flex: 0 0 auto;
    margin-right: 0;
    color: #071451;
  }
  .contact-cards h3,
  .contact-address h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 500;
  }
  .contact-cards article:nth-of-type(3) h3 {
    margin-bottom: 15px;
  }
  .contact-cards article:nth-of-type(3) p {
    margin-top: 18px;
  }
  .contact-cards p,
  .contact-address p {
    margin: 11px 0 0;
    font-size: 14px;
    line-height: 1.8;
  }
  .footer__about p {
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5 !important;
  }
  .footer__about p:nth-of-type(2) {
    margin: 25px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 2 !important;
  }
  body {
    background: #f7f3eb;
    overflow-x: hidden;
  }
  .site-shell {
    width: 100%;
    max-width: none;
    box-shadow: none;
    background: #f7f3eb;
    overflow-x: hidden;
  }
  .header {
    align-content: center;
    height: auto;
    margin: 0 auto;
    flex-wrap: nowrap;
    min-height: 99px;
    max-width: none;
    padding: 0 32px 0 25px;
    background: #fff;
  }
  .logo {
    width: 126px;
    height: auto;
    margin: 0;
  }
  .header__summary {
    display: none;
  }
  .compact {
    flex: 0 0 auto;
    width: 154px;
    height: 49px;
    margin: 0 32.5px 0 auto;
    border-radius: 999px;
    font-size: 16px;
  }
  .compact img {
    width: 19px;
  }
  .menu {
    flex: 0 0 28px;
    width: 31px;
    margin-left: auto;
    gap: 8px;
    padding: 2px 0;
  }
  .menu span {
    width: 31px;
    background: #707070;
  }
  .menu.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .drawer-menu__panel {
    width: 80%;
    padding: 22px 18px 24px;
  }
  .top-visual {
    --top-bg-width: 100%;
    --top-bg-height: calc(100vw * 804 / 430);
    --top-bg-joint: calc(var(--top-bg-height) - 1px);
    --top-bg-overlap: 40px;
    padding: 48px 28px 76px;
    text-align: center;
    background-image: url("img/sp-bg-sec.png"), url("img/sp-bg.png");
    background-repeat: no-repeat, no-repeat;
    background-size: var(--top-bg-width) calc(100% - var(--top-bg-joint) + var(--top-bg-overlap)), var(--top-bg-width) auto;
    background-position: center calc(var(--top-bg-joint) - var(--top-bg-overlap)), center top;
  }
  .hero-card {
    width: 100%;
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
    padding: 31px 14px 27px;
    border-radius: 10px;
    background: rgb(139 121 69 / 46%);
  }
  .hero-card__label {
    display: block;
    font-size: 17px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .hero-card__label::before,
  .hero-card__label::after {
    display: none;
  }
  .hero-card h1 {
    margin: 9px 0 22px;
    font-size: 37px;
    line-height: 1.18;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .hero-copy {
    font-size: 19px;
    line-height: 1.58!important;
    overflow-wrap: anywhere;
  }
  .hero-copy strong {
    display: inline-block;
    margin-top: 4px;
    font-size: 24px;
  }
  .check-link,
  .download,
  .apply-dark {
    width: 100%;
    max-width: 367px;
    margin-left: auto;
    margin-right: auto;
    min-height: 64px;
    height: 64px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: normal;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
  }
  .check-link {
    margin-top: 26px;
    margin-bottom: 18px;
    background: #123a5c;
  }
  .download {
    margin-top: 18px;
  }
  .guide-download {
    font-size: 15px;
  }
  .download,
  .apply-dark,
  .drawer-menu__button,
  .procedure-card__button,
  .faq-section__button,
  .support-form button {
    background: #e87534;
  }
  #apply.apply-dark {
    border-radius: 10px;
    font-size: 20px;
  }
  .stat-list {
    margin-bottom: 14px;
    gap: 26px;
    width: 100%;
    max-width: 300px;
    margin-top: 84px;
    margin-left: auto;
    margin-right: auto;
  }
  .stat-card,
  .summary-card {
    width: 300px;
    max-width: 100%;
    min-height: 210px;
    height: 210px;
    padding: 34px 0px 27px 22px;
    border-radius: 16px;
    text-align: left;
  }
  .stat-card h2,
  .summary-card h4 {
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: bold;
  }
  .stat-card p,
  .summary-card p {
    gap: 9px;
    justify-content: flex-start;
    align-items: baseline;
  }
  .stat-card strong,
  .summary-card strong {
    color: #e87534;
    font-family: helvetica-neue-lt-pro-cond, sans-serif;
    font-size: 83px;
    font-weight: 700;
    line-height: .92;
  }
  .stat-card b,
  .summary-card b {
    color: #e87534;
    font-size: 32px;
    font-weight: bold;
  }
  .stat-card em,
  .summary-card em {
    color: #12304d;
    font-size: 32px;
    font-weight: bold;
  }
  .summary-card--limit p {
    gap: 8px;
  }
  .summary-card--limit strong {
    font-size: 84px;
  }
  .stat-card small,
  .summary-card small {
    display: block;
    margin-top: -2px;
    font-size: 13px;
    white-space: normal;
  }
  .deadline-note {
    margin: 15px auto 45px;
    text-align: left;
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    font-size: 15px;
    font-weight: 500;
    padding-left: 0;
    text-indent: 0;
  }
  .deadline-note br {
    display: block;
  }
  .deadline-note__line {
    display: inline-block;
    padding-left: 1em;
  }
  .period-list {
    gap: 18px;
    width: 100%;
    max-width: 332px;
    margin-left: auto;
    margin-right: auto;
  }
  .period-card {
    padding-inline: clamp(22px, 7vw, 32px);
    width: 100%;
    max-width: 362px;
    min-height: 122px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0 20px 27.2px;
    border-color: rgba(255, 255, 255, .25);
    border-radius: 8px;
    text-align: left;
  }
  .period-card h2 {
    font-size: 18px;
    margin-bottom: -5px;
    font-weight: 500;
  }
  .period-card p {
    flex-wrap: wrap;
    gap: 4px 8px;
    margin: 0;
    justify-content: flex-start;
    align-items: baseline;
  }
  .period-card p:nth-of-type(2) {
    margin-top: -10px;
  }
  .period-card small,
  .period-card b {
    font-size: 16px;
    font-weight: 500;
  }
  .period-card strong {
    font-size: 30px;
    font-weight: bold;
  }
  .video-section {
    margin-top: -1px;
    padding: 70px 20px 0px;
    clip-path: none;
    background: #f7f3eb;
  }
  .video-section > h2,
  .overview__heading h2,
  .pc-section-heading h2,
  .support-info__heading h2,
  .support-form__header h2,
  .process-section h2,
  .application-section h2,
  .faq-section h2,
  .contact-section h2 {
    font-size: 24px;
    line-height: 1.28;
    font-weight: 600;
  }
  .support-info__heading h2 {
    font-size: 34px;
    font-weight: 600;
    text-align: left;
  }
  .video-section > p:not(.eyebrow) {
    font-size: 16px;
  }
  .video-section > .eyebrow,
  .video-section > h2,
  .video-section > p:not(.eyebrow),
  .video-section__grid {
    width: 100%;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }
  .video-section__grid {
    display: flex;
    gap: 16px;
    width: 100%;
    margin: 28px auto 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .video-section__grid::-webkit-scrollbar {
    display: none;
  }
  .video-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 28px 20px 22px;
    border-radius: 12px;
  }
  .video-card--pc {
    display: flex;
  }
  .video-heading {
    min-height: 46px;
    gap: 6%;
  }
  .video-heading span {
    width: 16.571%;
    max-width: 58px;
    min-width: 44px;
    height: auto;
    aspect-ratio: 1;
    margin-left: -4px;
  }
  .video-heading strong {
    min-width: 0;
    font-size: clamp(16px, 4.615vw, 18px);
    font-weight: bold;
  }
  .video-image {
    width: 95.429%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
    border-radius: 0;
  }
  .video-card ul {
    margin-top: 0px;
    width: 92%;
    max-width: 322px;
    margin-left: auto;
    margin-right: auto;
  }
  .video-card__learn-title {
    width: 92%;
    max-width: 322px;
    margin: 13px auto 0;
    font-size: 16px;
  }
  .video-card li {
    padding: 6.5px 28px 6.5px 0;
  }
  .video-button {
    min-height: 54px;
    width: 84%;
    max-width: 294px;
    font-size: 14px;
    font-weight: bold;
    margin: auto auto 0;
    border-radius: 10px;
  }
  .video-carousel__pagination {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 28px;
  }
  .video-carousel__pagination button {
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: #fff;
  }
  .video-carousel__pagination button.is-active {
    background: #071451;
  }
  .overview {
    padding: 58px 24px 0;
    background: #f7f3eb;
  }
  .overview__header {
    width: 100%;
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .overview-panel {
    --overview-card-width: 300px;
    width: 100%;
    margin-top: 26px;
    margin-bottom: 32px;
    padding: 32px 24px 44px;
    border-radius: 16px;
    background: #eee9df;
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
  }
  .overview__summary-list .summary-card {
    width: 100%;
    max-width: 100%;
  }
  .overview__summary-list {
    width: 100%;
    max-width: var(--overview-card-width);
    margin-left: auto;
    margin-right: auto;
  }
  .purpose {
    width: 100%;
    max-width: var(--overview-card-width);
    margin-left: auto;
    margin-right: auto;
    padding: 32px 20px;
    border-radius: 14px;
    background: #fff;
    font-size: 18px;
    line-height: 1.65;
  }
  .overview-panel h3 {
    font-size: 22px;
  }
  .detail-grid {
    width: 100%;
    max-width: var(--overview-card-width);
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }
  .detail-grid article {
    min-height: 138px;
    padding: 23px 22px;
    border-radius: 10px;
    background: #eee9df;
    text-align: left;
  }
  .detail-grid__expense {
    min-height: 0;
  }
  .expense-image-list {
    gap: 16px;
    margin-top: 16px;
  }
  .expense-image-list.expense-image-list--single {
    margin-right: auto;
    margin-left: auto;
  }
  .detail-grid h3 {
    margin-bottom: 3px;
    font-size: 18px;
    text-align: left;
  }
  .detail-grid p {
    margin-left: 0;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
  .final-apply {
    width: 100%;
    min-height: 58px;
    border-radius: 8px;
    font-size: 22px;
  }
  .final-apply img {
    width: 22px;
  }
  .eligibility-check {
    padding: 54px 32px 72px;
  }
  .eligibility-check .pc-section-heading,
  .check-tabs,
  .check-panel {
    width: 100%;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }
  .check-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 28px auto 0;
    gap: 0;
    align-items: end;
    overflow: visible;
  }
  .check-tabs__item {
    width: 100%;
    min-width: 0;
    min-height: 80px;
    padding: 8px 6px;
    border: 1px solid #d0cabd;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #f7f3eb;
    color: #071451;
    font: inherit;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.25;
  }
  .check-tabs__item.is-active {
    border-color: #fff;
    background: #163a5a;
    color: #fff;
  }
  .check-panel {
    margin-top: 0;
    padding: 24px 16px 26px;
    border-radius: 0 0 10px 10px;
    background: #f1ede5;
  }
  .check-panel__grid {
    gap: 18px;
  }
  .check-panel__group-heading {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    color: #12304d;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    min-height: 0;
    margin: 4px 0 0;
    padding: 0;
  }
  .check-panel__group-heading strong {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 26px 8px 12px;
    border-radius: 4px;
    background: #163a5a;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
  }
  .check-panel__group-heading span {
    color: #12304d;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    white-space: normal;
  }
  .check-panel__group-heading--secondary {
    margin-top: 20px;
  }
  .check-panel__question {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #12304d;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
  }
  .check-panel__question-icon {
    display: block;
    flex: 0 0 34px;
    width: 34px;
    min-width: 34px;
    height: 34px;
    border: 2px solid #C1B496;
    border-radius: 8px;
    background-color: #E3DED2;
    background-image: url("img/check_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 11px;
  }
  .check-panel__question.is-checked .check-panel__question-icon {
    border-color: #163a5a;
    background-color: #163a5a;
    background-image: url("img/check_on.png");
  }
  .check-panel__question-text {
    transform: translateY(-3px);
  }
  .check-panel__question-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
  }
  .check-panel__question-lead {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.5;
  }
  .check-panel__question-list {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
  }
  .check-panel__question-list > span {
    position: relative;
    display: block;
    padding-left: 1em;
  }
  .check-panel__question-list > span::before {
    content: "□";
    position: absolute;
    left: 0;
  }
  .check-panel__question-list > span + span {
    margin-top: 1px;
  }
  .check-panel__question-sublist {
    display: block;
    margin: 1px 0 0 .75em;
  }
  .check-panel__question-sublist span {
    position: relative;
    display: block;
    padding-left: 1em;
  }
  .check-panel__question-sublist span::before {
    content: "・";
    position: absolute;
    left: 0;
  }
  .check-panel__note {
    margin-top: 22px;
    font-size: 12px;
    line-height: 1.6;
    color: black;
  }
  .check-result {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px 20px;
    margin-top: 34px;
    padding: 24px 26px 28px;
    border: 1px solid #9b9b9b;
    border-radius: 10px;
    background: #fffdfa;
    color: #12304d;
  }
  .check-result::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -15px;
    left: 48px;
    width: 28px;
    height: 28px;
    border-top: 1px solid #9b9b9b;
    border-left: 1px solid #9b9b9b;
    background: #fffdfa;
    transform: rotate(45deg);
  }
  .check-result .pc-placeholder-icon--result {
    position: relative;
    z-index: 1;
    grid-row: 1;
    width: 46px;
    height: 46px;
  }
  .check-result > div {
    display: contents;
  }
  .check-result h3 {
    position: relative;
    z-index: 1;
    grid-column: 2;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.45;
  }
  .check-result p {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.9;
  }
  .support-section {
    padding: 58px 30px 44px;
  }
  .support-section__inner {
    margin: 0 auto;
    width: 100%;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }
  .support-form--embed,
  .support-form__iframe {
    height: 1418px;
  }
  .support-info__heading {
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  .support-info__lead {
    margin: 28px 0 28px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 450;
    text-align: left;
  }
  .support-card,
  .support-form,
  .procedure-card,
  .document-card,
  .faq-item,
  .contact-check,
  .contact-cards article,
  .contact-address {
    border-radius: 10px;
  }
  .support-card {
    padding: 28px 30px 34px;
  }
  .support-card__title {
    padding-bottom: 14px;
    border-bottom: 1px solid #d8d8d8;
    gap: 0px;
  }
  .support-card__title .pc-placeholder-icon--support {
    transform: translateX(-15px);
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    -o-transform: translateX(-15px);
  }
  .support-card:nth-of-type(2) .support-card__title .pc-placeholder-icon--support {
    transform: translateX(-9px);
    -webkit-transform: translateX(-9px);
    -moz-transform: translateX(-9px);
    -ms-transform: translateX(-9px);
    -o-transform: translateX(-9px);
  }
  .support-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
    min-width: 0;
    margin-top: 4px;
    padding-left: 1em;
    text-indent: -1em;
  }
  .support-card p {
    font-size: 14px;
    margin: 21px 0 25px;
    line-height: 1.65;
  }
  .support-card dl {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    font-size: 12px;
    line-height: 1.7;
    display: block;
    margin: 0;
  }
  .support-card dt {
    display: grid;
    place-items: center;
    border-radius: 4px;
    background: #DBE3F0;
    width: 63px;
    min-height: 26px;
    margin: 0 0 10px;
    font-size: 14px;
  }
  .support-card:first-of-type dt:first-of-type {
    margin-bottom: 15px;
  }
  .support-card dd {
    margin: 0 0 25px;
    font-size: 14px;
    line-height: 1.75;
  }
  .support-card dd:last-child {
    margin-bottom: 0;
  }
  .support-form__header {
    background: #071451;
    color: #fff;
    padding: 24px 30px 15px;
    border-radius: 10px 10px 0 0;
  }
  .process-section {
    padding: 45px 24px;
  }
  .process-section .pc-section-heading,
  .process-tabs,
  .process-relation,
  .process-list {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .process-section .pc-section-heading {
    max-width: 320px;
    text-align: center;
  }
  .process-section .pc-section-heading h2 {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .process-section .pc-section-heading span {
    font-weight: normal;
    text-align: center;
  }
  .process-tabs {
    display: flex;
    gap: 10px;
    max-width: 320px;
    margin-top: 28px;
  }
  .process-tabs__item {
    flex: 1 1 0;
    min-width: 0;
    min-height: 56px;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
  }
  .process-tabs__item.is-active {
    background: #fff;
    color: #071451;
  }
  .process-relation {
    margin-top: 36px;
    overflow-x: auto;
    padding: 22px 18px 16px;
    border-radius: 12px;
    background: #fff;
    scrollbar-width: thin;
    scrollbar-color: #071451 rgba(7, 20, 81, .16);
  }
  .process-relation.is-visible {
    margin-right: auto;
  }
  .process-relation::-webkit-scrollbar {
    height: 5px;
  }
  .process-relation::-webkit-scrollbar-track {
    background: rgba(7, 20, 81, .16);
    border-radius: 999px;
  }
  .process-relation::-webkit-scrollbar-thumb {
    background: #071451;
    border-radius: 999px;
  }
  .process-relation img {
    width: 640px;
    max-width: none;
  }
  .process-relation__note {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
    color: #12304d;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
  }
  @media (max-width: 390px) {
    .process-tabs {
      gap: 8px;
    }
    .process-tabs__item {
      min-height: 48px;
      padding: 8px 8px;
      font-size: 14px;
    }
  }
  .process-list {
    margin: 32px auto 0;
    margin-top: 51px;
  }
  .process-card {
    position: relative;
    display: grid;
    background: #fff;
    color: #071451;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 0 22px;
    align-items: start;
    padding: 42px 22px 44px;
    border-radius: 10px;
  }
  .process-card + .process-card {
    margin-top: 81px;
  }
  .process-card + .process-card::before {
    content: "";
    position: absolute;
    left: 50%;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid #fff;
    transform: translateX(-50%);
    top: -47px;
    width: 42px;
    height: 15px;
    border: 0;
    background: url("img/pc-process-arrow.png") center / contain no-repeat;
  }
  .process-card__number span {
    display: grid;
    place-items: center;
    min-height: 24px;
    border-radius: 4px;
    background: #dbe4f2;
    width: 71px;
    height: 26px;
    font-size: 14px;
    font-weight: 600;
  }
  .process-card__number b {
    display: block;
    margin-top: 12px;
    line-height: 1;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
  }
  .process-card__number {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }
  .process-card .pc-placeholder-icon--process {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 75px;
    height: 75px;
    margin-top: 34px;
    align-self: start;
  }
  .process-card:nth-child(1) .pc-placeholder-icon--process {
    margin-top: 25px;
    margin-right: -20px;
  }
  .process-card:nth-child(2) .pc-placeholder-icon--process {
    margin-top: 12px;
  }
  .process-card:nth-child(3) .pc-placeholder-icon--process {
    margin-top: 21px;
  }
  .process-card:nth-child(4) .pc-placeholder-icon--process {
    margin-top: -11px;
  }
  .process-card:nth-child(5) .pc-placeholder-icon--process {
    margin-top: 22px;
  }
  .process-card:nth-child(6) .pc-placeholder-icon--process {
    margin-top: 27px;
  }
  .process-card > div:not(.process-card__number) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
  .process-card h3 {
    margin: -4px 0 19px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
  }
  .process-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
  }
  .application-section {
    padding: 45px 30px;
    text-align: center;
  }
  .application-section > .pc-section-heading,
  .procedure-card,
  .document-list,
  .faq-section > h2,
  .faq-section > p,
  .faq-search,
  .faq-section h3,
  .faq-list,
  .faq-empty,
  .faq-section__contact,
  .contact-section__inner,
  .footer__inner {
    width: 100%;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }
  .application-section > .pc-section-heading {
    margin-bottom: 48px;
  }
  .application-section > .pc-section-heading h2 {
    margin-bottom: 13px;
    font-size: 28px;
  }
  .procedure-card {
    margin-top: 30px;
    padding: 30px 25px 38.5px;
    text-align: left;
  }
  .procedure-card__grid {
    gap: 0;
  }
  .procedure-card__grid > div + div {
    border-top: 1px solid #ddd;
    padding-top: 25px;
  }
  .procedure-card h4 {
    margin: 0 0 16px;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: start;
    gap: 0;
    margin-bottom: 13px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
  }
  .procedure-card h4 .pc-placeholder-icon--procedure {
    position: relative;
    width: 56px;
    height: 48px;
    object-fit: contain;
  }
  .procedure-card__grid > div:nth-child(1) h4:nth-of-type(1) .pc-placeholder-icon--procedure {
    top: -10px;
    left: -4px;
  }
  .procedure-card__grid > div:nth-child(2) h4:nth-of-type(1) .pc-placeholder-icon--procedure {
    top: -11px;
    left: -10px;
  }
  .procedure-card__grid > div:nth-child(2) h4:nth-of-type(2) .pc-placeholder-icon--procedure {
    left: -9px;
  }
  .procedure-card__grid > div:nth-child(2) h4:nth-of-type(2) {
    margin-bottom: 21px;
  }
  .procedure-card p {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.75;
    white-space: normal;
  }
  .procedure-card__grid > div:nth-child(2) p:first-of-type {
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
  }
  .document-list {
    margin-top: 59px;
    overflow: hidden;
  }
  .document-list > h2 {
    margin-bottom: 13px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
  }
  .document-list > p {
    margin-bottom: 31px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
  .document-tabs {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
    display: flex;
    position: relative;
    gap: 18px;
    margin-right: 0;
    padding-bottom: 18px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #153d60 #c8c2b6;
  }
  .document-tabs::-webkit-scrollbar {
    display: block;
    height: 5px;
  }
  .document-tabs::-webkit-scrollbar-track {
    background: #c8c2b6;
    border-radius: 999px;
  }
  .document-tabs::-webkit-scrollbar-thumb {
    background: #153d60;
    border-radius: 999px;
  }
  .document-tabs::after {
    display: none;
  }
  .document-tabs button {
    min-height: 44px;
    border: 1px solid #aaa;
    color: #071451;
    font: inherit;
    position: relative;
    z-index: 1;
    flex: 0 0 119px;
    width: 119px;
    height: 56px;
    border-color: #8b8b8b;
    border-radius: 8px;
    background: transparent;
    font-size: 14px;
    font-weight: bold;
  }
  .document-tabs button::after {
    display: none;
  }
  .document-tabs button.is-active {
    border-color: #153d60;
    background: #153d60;
    color: #fff;
    flex-basis: 154px;
    width: 154px;
  }
  .document-category-filter__label {
    display: none;
  }
  .document-audience-filter {
    margin-bottom: 24px;
  }
  .document-audience-filter__label {
    display: block;
    margin-bottom: 10px;
    color: #071451;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
  }
  .document-tabs--audience {
    margin-bottom: 0;
  }
  .document-bulk-download {
    margin: 0 0 24px;
  }
  .document-bulk-download__button {
    width: 100%;
    max-width: 339px;
    height: auto;
    min-height: 52px;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
  }
  .document-bulk-download__label {
    white-space: normal;
  }
  .document-bulk-download__status {
    font-size: 12px;
  }
  .document-list__grid {
    gap: 18px;
  }
  .guide-document-list {
    display: grid;
    gap: 18px;
    width: 100%;
    max-width: 370px;
    margin: 31px auto 40px;
  }
  .document-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 339px;
    height: 223px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 41px 22px 30px;
    text-align: left;
  }
  .document-card h3 {
    margin: 0 0 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
  }
  .document-card--with-audience {
    height: auto;
    min-height: 223px;
  }
  .document-card__audience {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 76px;
    height: 24px;
    margin: -6px 0 8px;
    padding: 0 12px;
    border-radius: 4px;
    background: #153d60;
    color: #fff;
    font-family: "kozuka-gothic-pro";
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }
  .document-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: auto;
    text-align: left;
  }
  .document-card small {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-top: 0;
  }
  .document-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 4px;
    background: #071451;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    width: 274px;
    height: 42px;
    min-height: 42px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
  }
  .document-card__actions {
    display: grid;
    gap: 10px;
    margin-top: 10px;
  }
  .document-card__actions .document-card__button {
    margin-top: 0;
  }
  .document-card__actions .document-card__button--example {
    background: #e87534;
  }
  .document-card__example-icon {
    display: none;
  }
  .document-card__button--example::before {
    width: 16px;
    height: 20px;
    background: url("img/paper.png") center / contain no-repeat;
    content: "";
  }
  .document-list__empty {
    margin: 28px 30px 0;
    color: #071451;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }
  .faq-section {
    padding: 28px 30px 92px;
  }
  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 19px;
  }
  .faq-section h3 {
    margin: 0 0 18px;
    font-size: 16px;
    margin-top: 50px;
    font-weight: 500;
  }
  .faq-item {
    border-radius: 10px;
  }
  .faq-item + .faq-item {
    margin-top: 14px;
  }
  .faq-item__question,
  .faq-item__answer {
    grid-template-columns: 45px minmax(0, 1fr) 28px;
  }
  .faq-item__question {
    column-gap: 22px;
    row-gap: 0;
    padding: 24px 25px 10px;
    align-items: start;
    gap: 10px;
  }
  .faq-item__question span,
  .faq-item__answer span {
    width: 45px;
    height: 45px;
    font-size: 15px;
  }
  .faq-item__question b {
    border-radius: 4px;
    background: #f8d9ca;
    color: #8b4a31;
    text-align: center;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: auto;
    min-width: 112px;
    height: 26px;
    padding: 1.5px 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    justify-self: start;
  }
  .faq-item__question i {
    width: 28px;
    height: 28px;
    margin-top: -7px;
  }
  .faq-item__question i::before,
  .faq-item__question i::after {
    width: 28px;
  }
  .faq-item h4 {
    margin: 4px 0 0;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-top: 0;
    padding-top: 34px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.48;
  }
  .faq-item__answer {
    max-height: 0;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height .36s ease, padding .36s ease, opacity .24s ease, transform .36s ease;
    grid-template-columns: 45px minmax(0, 1fr);
    column-gap: 22px;
    padding-left: 28px;
    padding-right: 28px;
    border-top: 0;
    position: relative;
  }
  .faq-item__answer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(320px, calc(100% - 50px));
    height: 1px;
    background: #e5e5e5;
    transform: translateX(-50%);
  }
  .faq-item.is-open .faq-item__answer {
    max-height: var(--faq-answer-height);
    opacity: 1;
    transform: translateY(0);
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 10px;
  }
  .faq-item__answer p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
  }
  .faq-item__answer small {
    display: block;
    margin-top: 15px;
    font-size: 10px;
    font-weight: 500;
  }
  .contact-section {
    padding: 45px 30px 0;
  }
  .contact-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    text-align: center;
  }
  .contact-check,
  .contact-cards article,
  .contact-address {
    padding: 34px 26px;
  }
  .contact-address {
    margin-top: 24px;
    padding: 45px 25px;
    gap: 34px;
  }
  .contact-cards {
    margin-top: 40px;
    gap: 14px;
  }
  .contact-cards strong {
    display: block;
    color: #e87534;
    overflow-wrap: anywhere;
    font-family: helvetica-neue-lt-pro-cond, sans-serif;
    font-size: 32px;
  }
  .contact-cards article h3,
  .contact-cards article strong,
  .contact-cards article p {
    line-height: 1;
  }
  .contact-cards article:nth-of-type(3) strong {
    font-size: 18px;
  }
  .contact-address h3,
  .contact-address p,
  .footer h2,
  .footer h3,
  .footer p,
  .footer a {
    line-height: 1;
  }
  .contact-address p {
    font-size: 16px;
    line-height: 1.6;
  }
  .contact-address .address-organization {
    margin-top: 0;
  }
  .contact-address div:nth-of-type(1) p,
  .contact-address div:nth-of-type(2) p {
    line-height: 1.8;
  }
  .contact-address div:nth-of-type(2) p:nth-of-type(1),
  .contact-address div:nth-of-type(2) p:nth-of-type(2) {
    margin-bottom: 34px;
  }
  .contact-address h3 {
    margin-bottom: 13px;
  }
  .footer {
    padding-bottom: 80px;
    padding: 42px 30px 55px;
    background: #071451;
  }
  .footer__inner {
    width: min(100%, 370px);
  }
  .footer__about h2 {
    margin: 0 0 8px;
    font-family: "Hiragino Mincho ProN","Yu Mincho",serif;
    font-size: 22px;
  }
  .footer__nav {
    grid-template-columns: max-content max-content;
    grid-template-rows: auto repeat(5, auto);
    grid-auto-flow: column;
    gap: 16px 57px;
    margin-top: 42px;
  }
  .footer__nav h3 {
    margin: 0 0 0px;
    grid-column: 1 / -1;
    font-size: 14px;
    font-weight: 500;
  }
  .footer__nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
  .footer__bottom {
    border-top: 1px solid rgba(255,255,255,.65);
    font-size: 11px;
    line-height: 1.8;
    display: block;
    margin-top: 42px;
    padding-top: 35px;
  }
  .footer__bottom p:first-child {
    font-size: 14px;
    line-height: 2.25;
  }
  .footer__bottom p:nth-child(2) {
    margin-top: 59px;
    font-size: 14px;
    line-height: 2;
    text-align: right;
    white-space: nowrap;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1023px) {
  /* AIチャットボットリリース時にコメントアウト解除  */
  /* .ai-chat-guide {
    right: 18px;
    bottom: calc(2rem + 112px + 15px);
    min-width: 210px;
    padding: 15px 40px 15px 20px;
  }
  .ai-chat-guide p {
    font-size: 17px;
  }
  .ai-chat-guide::after {
    right: 44px;
  } */
  .to-top {
    right: 7px;  /* AIチャットボットリリース時に変更→ calc(1.2rem + (112px - 72px) / 2); */
    bottom: 30px;  /* AIチャットボットリリース時に変更→ calc(2rem + 112px + 86px); */
  }
  /* AIチャットボットリリース時にコメントアウト解除  */
  /* body.is-ai-chat-guide-hidden .to-top {
    bottom: calc(2rem + 112px + 11px);
  } */
}

@media (max-width: 400px) {
  .header {
    padding-right: clamp(8px, calc(42.48vw - 138.16px), 32px);
  }
  .compact {
    margin-right: clamp(0px, calc(57.52vw - 197.92px), 32.5px);
  }
}

@media (max-width: 344px) {
  .header {
    flex-wrap: wrap;
    align-content: center;
    row-gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .header::after {
    content: "";
    display: none;
    order: 1;
    flex: 0 0 100%;
  }
  .logo {
    order: 0;
    flex: 0 0 auto;
    width: 126px;
  }
  .compact {
    order: 2;
    margin: 0 auto 0 0;
  }
  .menu {
    order: 0;
    align-self: center;
    margin-left: auto;
  }
}
