@charset "utf-8";
@media only screen and (max-width: 750px) {
  /*--------------------*/
  /*---- sp_cont.css ----*/
  /*--------------------*/

  /*------------------------------------
		基本設定
	-------------------------------------*/
  html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 65px;
  }

  body {
    padding-top: 65px;
    font-size: 1.4em;
  }

  body.no-scroll {
    overflow: hidden;
  }

  img {
    height: auto;
    vertical-align: bottom;
  }

  .spNone {
    display: none;
  }

  .sectionInner {
    padding: 0 20px;
  }

  .sectionTitle {
    font-size: 2.2rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
    color: var(--deepBlue);
  }

  .centeredTitle {
    text-align: center;
  }

  .primaryButton,
  .outlineButton,
  .documentButton {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: var(--font-w-bold);
  }

  .primaryButton {
    padding: 33px 14px 34px;
    font-size: 1.9rem;
    color: #222;
    background-color: #AEE776;
    border-radius: 15px;
    box-shadow: 4px 4px 4px rgb(0 0 0 / 20%);
  }

  /*------------------------------------
    header
  -------------------------------------*/
  .header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
  }

  .header.is-scrolled {
    position: fixed;

    box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
    animation: headerFadeIn 0.4s ease forwards;
  }

  @keyframes headerFadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .headerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 20px;
  }

  .headerLogo img {
    width: 274px;
    height: auto;
  }

  .hamburger {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 28px;
    height: 23px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--deepBlue);
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 11px;
  }

  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .headerNav {
    width: 100%;
    height: 100vh;
    padding: 60px 50px 30px;
    position: absolute;
    top: 64px;
    left: 0;
    background-color: var(--deepBlue);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
  }

  .headerNav.is-active {
    opacity: 1;
    visibility: visible;
  }

  .navText {
    display: block;
    padding: 24px 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    border-top: 1px solid #888;
  }

  .navText:nth-child(2) {
    margin-bottom: 30px;
    border-bottom: 1px solid #888;
  }

  .navButton {
    display: block;
    width: 100%;
    padding: 23px 14px 24px;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    border-radius: 15px;
  }

  .navButtonEvent {
    margin: 30px 0;
    background-color: #FFD421;
  }

  .navButtonContact {
    background-color: #AEE776;
  }

  .navSocialLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin: 42px 0 54px;
  }

  .relatedLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 10px 21px;
    background: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 15px;
  }

  .relatedMark {
    display: block;
    width: 30px;
  }

  /*------------------------------------
      hero
    -------------------------------------*/
  .heroSection {
    position: relative;
    overflow: hidden;
  }

  .heroSection::before {
    content: "";
    display: block;
    aspect-ratio: 375 / 275;
    background-image: url("../img/hero-main-image-sp.jpg");
    background-image: image-set(url("../img/hero-main-image-sp.webp") type("image/webp"), url("../img/hero-main-image-sp.jpg") type("image/jpeg"));
    background-size: cover;
    background-position: center;
  }

  .heroTextSp {
    padding: 19px 10px;
    background: var(--paleCream);
    font-size: 1.5rem;
    font-weight: var(--font-w-bold);
    text-align: center;
  }

  .heroContent {
    padding: 40px 20px;
    background: #008BC9;
  }

  .heroInner {
    margin-bottom: 26px;
    padding: 0 20px;
    text-align: center;
  }

  .heroContent img {
    max-width: 100%;
  }

  .heroContent .primaryButton {
    width: 100%;
  }

  /*------------------------------------
    news
  -------------------------------------*/
  .newsSection {
    padding: 46px 0 50px;
  }

  .newsTitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: var(--font-w-bold);
    letter-spacing: 0.1em;
    color: var(--deepBlue);
  }

  .newsTitle::before {
    content: "";
    width: 20px;
    height: 25px;
    background: url(../img/icons/icon-news.svg) no-repeat;
    background-size: contain;
  }

  .newsList {
    margin-top: 40px;
  }

  .newsItem {
    border-bottom: 1px solid #D0D0D0;
  }

  .newsItem:first-child {
    border-top: 1px solid #D0D0D0;
  }

  .newsItemLink {
    display: grid;
    grid-template-columns: 44% minmax(0, 1fr);
    grid-template-areas:
      "image meta"
      "title title"
      "text text"
      "arrow arrow";
    column-gap: 22px;
    align-items: end;
    padding: 25px 0 25px;
    position: relative;
  }

  .newsItemLink::after {
    grid-area: arrow;
    content: "";
    display: block;
    width: 42px;
    height: 42px;
    margin: 18px auto 0;
    background: url(../img/icons/icon-arrrow-right.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .newsImage {
    grid-area: image;
    width: 100%;
    aspect-ratio: 150 / 89;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #9fe0bf, #25b9e5);
    overflow: hidden;
  }

  .newsImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .newsBody {
    display: contents;
  }

  .newsMeta {
    grid-area: meta;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
  }

  .newsCategory {
    width: 100%;
    padding: 9px 4px 10px;
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: var(--font-w-bold);
    line-height: 1;
    color: #fff;
    text-align: center;
  }

  .categoryInfo {
    background: #54BEE2;
  }

  .categoryTips {
    background: #7DC932;
  }

  .categorySeminar {
    background: #F49520;
  }

  .newsMeta time {
    font-size: 1.6rem;
    font-weight: var(--font-w-bold);
  }

  .newsBody h3 {
    grid-area: title;
    margin: 20px 0 13px;
    font-size: 1.8rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
  }

  .newsBody p {
    grid-area: text;
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .newsButtonWrap {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }

  .outlineButton {
    min-width: 295px;
    padding: 15px 14px 16px;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    border: 2px solid var(--deepBlue);
    box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.18);
  }

  /*------------------------------------
    worry
  -------------------------------------*/
  .worrySection {
    padding: 50px 0;
    background: var(--paleCream);
  }

  .worryGrid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 44px;
  }

  .worryCard {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 24px;
    width: 100%;
  }

  .worryImage img {
    width: 100%;
    height: auto;
  }

  .worryCard p {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 115px;
    padding: 16px 10px;
    position: relative;
    background: var(--paleBlue);
    font-size: 1.7rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    text-align: center;
    border: 3px solid var(--deepBlue);
    border-radius: 20px;
  }

  .worryCard p::before {
    content: "";
    position: absolute;
    top: 16px;
    left: -16px;
    width: 16px;
    height: 17px;
    background: url(../img/speech-arrow-sp.svg) no-repeat;
    background-size: contain;
  }

  /*------------------------------------
      about
    -------------------------------------*/
  .aboutSection {
    padding: 50px 0;
  }

  .aboutSection::before {
    content: "";
    display: block;
    width: 50px;
    height: 25px;
    margin: 0 auto 30px;
    background: url(../img/down-arrow.svg) no-repeat;
    background-size: contain;
  }

  .aboutText {
    margin-top: 28px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .aboutHead {
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-top: 30px;
    padding-bottom: 16px;
    font-size: 1.9rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    border-bottom: 3px solid var(--deepBlue);
  }

  .pointCardList {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .pointCard {
    width: 100%;
    margin-top: 26px;
    position: relative;
  }

  .pointCardInner {
    background: var(--deepBlue);
    border: 3px solid var(--deepBlue);
    border-radius: 20px;
    overflow: hidden;
  }

  .pointCard h3 {
    padding: 48px 14px 14px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: var(--font-w-bold);
    text-align: center;
  }

  .pointCard p {
    padding: 18px 26px;
    background: #fff;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .pointBadge {
    display: block;
    width: 130px;
    height: 65px;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  /*------------------------------------
    cta
  -------------------------------------*/
  .ctaSection {
    padding: 52px 20px;
    position: relative;
    background-image: url("../img/cta-image-sp.jpg");
    background-image: image-set(url("../img/cta-image-sp.webp") type("image/webp"), url("../img/cta-image-sp.jpg") type("image/jpeg"));
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .ctaBox {
    padding: 28px 20px 34px;
    background: rgb(255 255 255 / 70%);
    border-radius: 20px;
  }

  .ctaHead {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
    text-align: center;
  }

  .ctaHead span {
    color: var(--accentOrange);
  }

  .ctaText {
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .ctaBox .primaryButton {
    width: 100%;
  }

  /*------------------------------------
      support
    -------------------------------------*/
  .supportSection {
    padding: 50px 0 36px;
  }

  .supportList {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .supportItem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 27.5px 20px;
    position: relative;
    background: linear-gradient(135deg, transparent 0 25.46px, #fff 26px) bottom right / 36px 36px no-repeat, #ffd421;
    font-size: 1.7rem;
    font-weight: var(--font-w-bold);
    line-height: 1.5;
    text-align: center;
    z-index: 1;
  }

  .supportItem::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 7px;
    left: 7px;
    background: url(../img/support-check.svg) no-repeat;
    background-size: contain;
    z-index: -1;
  }

  .supportItem::after {
    content: "";
    width: 36px;
    height: 36px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f4c320 0 49%, transparent 50%);
  }

  .supportNote {
    margin-top: 32px;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
  }

  .supporterSection {
    padding: 50px 0 124px;
    position: relative;
    background: var(--paleCream);
  }

  .supporterSection::after {
    content: "";
    width: 100%;
    max-width: 335px;
    aspect-ratio: 335 / 107;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/supporter-illust.svg) no-repeat;
    background-size: contain;
  }

  .supporterImage {
    aspect-ratio: 335 / 188;
    margin-bottom: 26px;
    border-radius: 20px;
    overflow: hidden;
  }

  .supporterImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .supporterTitle {
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-size: 2rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    border-bottom: 3px solid var(--deepBlue);
  }

  .supporterContent p {
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .documentButton {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    padding: 25px 14px;
    background: var(--accentOrange);
    font-size: 1.4rem;
    font-weight: var(--font-w-bold);
    color: #fff;
    border-radius: 15px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  }

  .documentButton span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
  }

  .documentButton span::after {
    content: "";
    display: block;
    width: 25px;
    height: 30px;
    background: url(../img/icons/icon-pdf.svg) no-repeat;
    background-size: contain;
  }

  /*------------------------------------
    industry
  -------------------------------------*/
  .industrySection {
    padding: 50px 0 100px;
    position: relative;
  }

  .industryInner {
    display: grid;
    grid-template-areas:
      "title"
      "text"
      "list"
      "button";
  }

  .industryContent {
    display: contents;
  }

  .industryTitle {
    grid-area: title;
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: 2rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    border-bottom: 3px solid var(--deepBlue);
  }

  .industryContent p {
    grid-area: text;
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .industryListWrap {
    grid-area: list;
    margin-bottom: 48px;
  }

  .industryContent .primaryButton {
    grid-area: button;
  }

  .industryList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .industryList li {
    padding: 13px 10px 14px;
    background: var(--paleBlue);
    font-size: 1.6rem;
    font-weight: var(--font-w-bold);
    line-height: 1.5;
    color: var(--deepBlue);
    text-align: center;
    border: 3px solid #BABABA;
    border-radius: 15px;
  }

  .industryNote {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
  }

  /*------------------------------------
    page
  -------------------------------------*/
  .pageSection {
    background: var(--paleCream);
  }

  .pageTitle {
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 26px;
    padding-bottom: 26px;
    position: relative;
    font-size: 2.0rem;
    font-weight: var(--font-w-bold);
    letter-spacing: 0.1em;
    text-align: center;
  }

  .pageTitle::after {
    content: "";
    width: 150px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #008BC9;
  }

  .pageText {
    font-size: 1.4rem;
    font-weight: var(--font-w-bold);
    text-align: center;
  }

  /*------------------------------------
    contact
  -------------------------------------*/
  .contactSection {
    padding: 42px 0 60px;
  }

  .contactForm {
    margin-top: 30px;
  }

  .formGroup:last-child {
    border-bottom: 1px solid #B0B0B0;
  }

  .formField {
    display: flex;
    flex-direction: column;
  }

  .formLabel {
    padding: 8px 80px 8px 20px;
    position: relative;
    background: #FFE3C6;
    font-size: 1.4rem;
    font-weight: var(--font-w-bold);
    border-top: 1px solid #B0B0B0;
    border-bottom: 1px solid #B0B0B0;
  }

  .formLabel.required::after {
    content: "必 須";
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #E66A2C;
    font-size: 1.2rem;
    font-weight: var(--font-w-medium);
    line-height: 1;
    color: #fff;
    border-radius: 9999px;
    padding-bottom: 2px;
  }

  .formControl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 20px 20px 30px;
  }

  .formInput {
    width: 100%;
    padding: 11px 18px 12px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    border: 1px solid #222;
    border-radius: 8px;
  }

  .formInputMail {

    padding: 10px 18px 13px;
  }

  .formInput:focus {
    border-color: #222;
    outline: none;
  }

  .formInput::placeholder {
    color: #B0B0B0;
  }

  .formMail {
    width: 100%;
  }

  .formMailConfirmText {
    margin: 14px 0 12px;
    font-size: 1.3rem;
    font-weight: var(--font-w-medium);
  }

  .mw_wp_form_confirm .formMailConfirm {
    display: none;
  }

  .formTextarea {
    min-height: 250px;
    line-height: 1.6;
    resize: vertical;
  }

  .ta1 {
    min-height: 180px;
  }

  .formCheckbox {
    appearance: none;
    display: block;
    width: 28px;
    height: 28px;
    margin: 0;
    position: relative;
    background-color: #fff;
    border: 1px solid #222;
    border-radius: 4px;
    cursor: pointer;
  }

  .formCheckbox:checked {
    background-color: #54BEE2;
    border-color: #54BEE2;
  }

  .formCheckbox:checked::before {
    content: "";
    display: block;
    width: 18px;
    height: 16px;
    position: absolute;
    top: 5px;
    left: 4px;
    background: url(../img/form-check.svg) no-repeat;
    background-size: contain;
  }

  .formCheckLabel {
    font-size: 1.4rem;
    font-weight: var(--font-w-bold);
  }

  .formCheckLabel a {
    text-decoration: underline;
  }

  .mw_wp_form_confirm .formCheckLabel a {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }

  .formPrivacyCheck .mwform-checkbox-field-text {
    display: none;
  }

  .formSelectWrap {
    width: 100%;
    position: relative;
  }

  .formSelectWrap::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 15px;
    right: 18px;
    border-right: 2px solid #F49520;
    border-bottom: 2px solid #F49520;
    transform: rotate(45deg);
    pointer-events: none;
  }

  .mw_wp_form_confirm .formSelectWrap::after {
    display: none;
  }

  .formSelect {
    width: 100%;
    padding: 14px 50px 15px 20px;
    background: #fff;
    font-size: 1.4rem;
    line-height: 1;
    color: #222;
    border: solid 1px #222;
    border-radius: 8px;
    outline: none;
    appearance: none;
    cursor: pointer;
  }

  .formSelect:invalid,
  .formSelect.is-placeholder {
    color: #B0B0B0;
  }

  .formButtonWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
  }

  .formButton {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 50px;
    padding-bottom: 2px;
    background-color: #008BC9;
    font-size: 1.6rem;
    font-weight: var(--font-w-bold);
    letter-spacing: 0;
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
  }

  .formButton.back {
    width: 100px;
    background-color: #79A5B8;
  }

  .formAlertBox {
    margin-top: 20px;
    padding: 12px 18px;
    background-color: #FFB692;
    border-radius: 15px;
  }

  .formAlertBox p {
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
  }

  p.formAlert,
  .mw_wp_form span.error {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
    line-height: 1.4;
    color: #E66A2C;
  }

  .formAlert+.formAlert {
    margin-top: -8px;
  }

  .formMail span.error {
    margin-top: 12px;
  }

  .formAlert::before,
  .mw_wp_form span.error::before {
    flex-shrink: 0;
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/form-alert.svg) no-repeat;
    background-size: contain;
  }

  .formPrivacyAlert {
    width: 100%;
    margin-top: 12px;
    padding: 0 20px;
  }

  .formPrivacyAlert .formAlert {
    align-items: flex-start;
  }

  .formPrivacyAlert .formAlert::before {
    margin: 1px -2px 0 0;
  }

  .formPrivacyCheck {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 46px;
  }

  .formPrivacyCheck span.error {
    width: 100%;
    padding: 0 20px;
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mw_wp_form_confirm .formPrivacyCheck>p:first-child {
    display: none;
  }

  .formPrivacyCheck .formCheckLabel.confirm,
  .mw_wp_form_confirm .formCheckLabel {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .formPrivacyCheck .formCheckLabel.confirm::before,
  .mw_wp_form_confirm .formCheckLabel::before {
    content: "";
    display: block;
    width: 17px;
    height: 12px;
    background: url(../img/confirm-check.svg) no-repeat;
    background-size: contain;
  }

  .formText {
    font-size: 1.6rem;
  }

  .completeInner {
    padding: 0 20px;
  }

  .completeText {
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .completeBox {
    width: 100%;
    margin: 30px auto 0;
    padding: 22px 20px 26px;
    text-align: center;
    border: 1px solid #222;
  }

  .completeBox p {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 2;
  }

  .completeBox p:first-child {
    color: #004F95;
  }

  .completeNote {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
  }

  .completeNote p {
    padding-left: 22px;
    position: relative;
    font-size: 1.3rem;
    font-weight: var(--font-w-medium);
  }

  .completeNote p::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }

  .completeButtonWrap {
    display: flex;
    justify-content: center;
    margin-top: 44px;
  }

  .completeButtonWrap .formButton {
    width: 220px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }

  /*------------------------------------
    footer
  -------------------------------------*/
  .pageTop {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 44px;
    height: 44px;
    background: url(../img/pagetop.svg) no-repeat;
    background-size: contain;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  }

  .pageTop.is-show {
    opacity: 1;
    visibility: visible;
  }

  .footer {
    padding: 40px 0 20px;
    color: #fff;
    background: var(--mainBlue);
  }

  .footerInner {
    padding: 0 20px;
  }

  .footerInfo h2 {
    margin: 0 0 18px;
    font-size: 2rem;
    font-weight: var(--font-w-bold);
  }

  .footerInfo p {
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
  }

  .footerInfo p:first-of-type {
    margin-bottom: 20px;
    font-weight: var(--font-w-bold);
  }

  .footerInfo a {
    color: #fff;
  }

  .footerLinks {
    margin-top: 26px;
  }

  .socialLinks {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .socialLinks a {
    display: block;
  }

  .footerLinks nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 44px;
  }

  .footerLinks nav a {
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    color: #fff;
    text-decoration: underline;
  }

  .copyright {
    margin: 44px 0 0;
    font-size: 1.2rem;
    font-weight: var(--font-w-medium);
    text-align: center;
  }

  /*------------------------------------
    news（一覧・詳細ページ共通）
  -------------------------------------*/
  .headerBackLink {
    font-size: 0;
    width: 36px;
    height: 36px;
    background: url(../img/back-sp.svg) no-repeat;
    background-size: contain;
  }

  .newsArchiveSection {
    padding: 42px 0 60px;
  }

  .newsArchiveInner {
    margin-top: 46px;
  }

  .newsButtonWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 50px;
  }

  .newsButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    padding: 12.5px 10px 13.5px;
    background-color: #008BC9;
    font-size: 1.5rem;
    font-weight: var(--font-w-bold);
    color: #fff;
    border-radius: 9999px;
  }

  /* 一覧ページ */
  .newsArchiveCard {
    background-color: #fff;
    border-radius: 20px;
    padding: 23px 20px 60px;
  }

  .newsFilterTabs {
    display: none;
  }

  .newsFilterSelectWrap {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 20px;
    position: relative;
  }

  .newsFilterSelectWrap::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 14px;
    right: 42px;
    border-right: 2px solid #004F95;
    border-bottom: 2px solid #004F95;
    transform: rotate(45deg);
    pointer-events: none;
  }

  .newsFilterSelect {
    width: 100%;
    padding: 14px 50px 15px 20px;
    background: #E9E8E8;
    font-size: 1.4rem;
    font-weight: var(--font-w-bold);
    line-height: 1;
    color: #222;
    border: none;
    border-radius: 8px;
    outline: none;
    appearance: none;
    cursor: pointer;
  }

  .boxPager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 44px;
    margin-top: 60px;
    position: relative;
  }

  .boxPager li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--deepBlue);
    border-radius: 6px;
  }

  .boxPager li.top a {
    background-image: url(../img/news/arrow-top.svg);
    background-repeat: no-repeat;
    background-size: 13px 10px;
    background-position: center;
  }

  .boxPager li.pref a {
    background-image: url(../img/news/arrow-pref.svg);
    background-repeat: no-repeat;
    background-size: 6px 10px;
    background-position: center;
  }

  .boxPager li.next a {
    background-image: url(../img/news/arrow-next.svg);
    background-repeat: no-repeat;
    background-size: 6px 10px;
    background-position: center;
  }

  .boxPager li.end a {
    background-image: url(../img/news/arrow-end.svg);
    background-repeat: no-repeat;
    background-size: 13px 10px;
    background-position: center;
  }

  .boxPager li.spNum {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    line-height: 44px;
  }

  .boxPager .num {
    display: none;
  }

  .boxPager li.top,
  .boxPager li.pref,
  .boxPager li.next,
  .boxPager li.end {
    position: absolute;
  }

  .boxPager li.top {
    top: 0;
    left: 15px;
  }

  .boxPager li.pref {
    top: 0;
    left: 72px;
  }

  .boxPager li.next {
    top: 0;
    right: 72px;
  }

  .boxPager li.end {
    top: 0;
    right: 15px;
  }

  /* 詳細ページ */
  .newsSingleSection {
    padding: 65px 0 50px;
  }

  .newsDetail {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
  }

  .newsDetailHead {
    padding: 54px 20px 36px;
    background-image: url("../img/news/news_back_sp.jpg");
    background-image: image-set(url("../img/news/news_back_sp.webp") type("image/webp"), url("../img/news/news_back_sp.jpg") type("image/jpeg"));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
  }

  .newsDetailCategory {
    display: inline-block;
    width: 142px;
    padding: 8.5px 2px 10px;
    font-size: 1.3rem;
  }

  .newsDetailTitle {
    margin: 20px 0;
    font-size: 2.5rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
  }

  .newsDetailDate {
    display: block;
    font-size: 1.8rem;
    font-weight: var(--font-w-bold);
  }

  .newsDetailBody {
    padding: 40px 20px 45px;
  }

  .newsDetailBody p {
    margin-bottom: 42px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .newsDetailBody picture,
  .newsDetailBody figure.wp-block-image {
    display: block;
    margin-bottom: 42px;
  }

  .newsDetailBody img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .newsDetailBody h2 {
    margin-bottom: 30px;
    padding: 0 0 2px 12px;
    border-left: 5px solid #008BC9;
    font-size: 2.1rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
  }

  .newsDetailBody h3 {
    position: relative;
    margin-bottom: 26px;
    padding-left: 18px;
    font-size: 2rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
  }

  .newsDetailBody h3::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 12px;
    left: 0;
    background-color: #008BC9;
    border-radius: 50%;
  }

  .newsDetailBody h4 {
    margin-bottom: 26px;
    padding-bottom: 12px;
    border-bottom: 1px solid #008BC9;
    font-size: 1.9rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
  }

  .newsDetailBody .tableWrap {
    margin: 0 -20px 42px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .newsDetailBody .tableWrap::-webkit-scrollbar {
    display: none;
  }

  .newsDetailBody table {
    min-width: 800px;
    border: 1px solid var(--deepBlue);
    border-collapse: collapse;
  }

  .newsDetailBody th,
  .newsDetailBody td {
    padding: 12px 20px;
    border: 1px solid var(--deepBlue);
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: left;
  }

  .newsDetailBody th {
    background-color: #E7F9FF;
    font-weight: var(--font-w-bold);
  }

  .newsDetailBody td {
    font-weight: var(--font-w-medium);
  }

  .newsDetailBody ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 42px;
  }

  .newsDetailBody ul li {
    position: relative;
    padding-left: 16px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .newsDetailBody ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 11px;
    left: 0;
    background-color: #008BC9;
    border-radius: 50%;
  }

  .newsDetailBody blockquote {
    margin-bottom: 42px;
    padding: 20px 20px;
    background-color: #E7F9FF;
    border-radius: 12px;
  }

  .newsDetailBody blockquote p {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .newsDetailBody a {
    color: #008BC9;
    text-decoration: underline;
  }

  .newsDetailBody>*:last-child {
    margin-bottom: 0;
  }

}