@charset "utf-8";
@media only screen and (min-width: 751px) {
  /*--------------------*/
  /*---- pc_cont.css ----*/
  /*--------------------*/

  /*------------------------------------
		基本設定
	-------------------------------------*/
  html {
    font-size: 62.5%;
    overflow: auto;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }

  body {
    min-width: 1260px;
    padding-top: 100px;
    font-size: 1.6em;
  }

  img {
    height: auto;
    vertical-align: bottom;
  }

  a {
    transition: .2s;
  }

  .pcNone {
    display: none;
  }

  .sectionInner {
    width: 1000px;
    margin: 0 auto;
  }

  .sectionTitle {
    font-size: 2.6rem;
    font-weight: var(--font-w-bold);
    line-height: 1.4;
    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: 26px 14px;
    font-size: 2rem;
    font-weight: var(--font-w-bold);
    color: #222;
    background-color: #AEE776;
    border-radius: 15px;
    box-shadow: 4px 4px 4px rgb(0 0 0 / 20%);
  }

  .primaryButton:hover {
    background-color: #DAF7BE;
    color: #52A600;
  }

  /*------------------------------------
    header
  -------------------------------------*/
  .header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: all 0.4s ease;
    z-index: 999;
    overflow: auto;
  }

  .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: flex-end;
    justify-content: space-between;
    min-width: 1200px;
    gap: 20px;
    padding: 20px 30px 0 30px;
  }

  .header.is-scrolled .headerInner {
    padding-top: 10px;
  }

  .headerLogo {
    padding-bottom: 10px;
  }

  .hamburger {
    display: none;
  }

  .headerNav {
    display: flex;
    align-items: center;
    font-weight: var(--font-w-bold);
  }

  .navText {
    display: flex;
    align-items: center;
    height: 75px;
    padding: 0 20px;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
    border-left: 1px solid #D0D0D0;
  }

  .navText:nth-child(2) {
    margin-right: 20px;
    border-right: 1px solid #D0D0D0;
  }

  .navText:hover {
    color: #008BC9;
  }

  .navButton {
    display: grid;
    width: 120px;
    height: 75px;
    margin-top: auto;
    place-items: center;
    align-content: center;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .navButtonEvent {
    margin: 0 10px 0 20px;
    background-color: #FFD421;
  }

  .navButtonEvent:hover {
    background-color: #FFEFAE;
    color: #E98400;
  }

  .navButtonContact {
    background-color: #AEE776;
  }

  .navButtonContact:hover {
    background-color: #DAF7BE;
    color: #52A600;
  }

  .navSocialLinks {
    display: none;
  }

  .relatedLink {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .relatedLink:hover {
    opacity: .7;
  }

  .relatedMark {
    display: block;
    width: 35px;
  }

  .relatedText::after {
    content: "";
    display: inline-block;
    width: 13.5px;
    height: 13.5px;
    margin-left: 3px;
    background: url(../img/icons/icon-blank.svg) no-repeat;
    background-size: contain;
    vertical-align: -2px;
  }

  /*------------------------------------
    hero
  -------------------------------------*/
  .heroSection {
    height: 640px;
    position: relative;
    background-image: url("../img/hero-main-image.jpg");
    background-image: image-set(url("../img/hero-main-image.webp") type("image/webp"), url("../img/hero-main-image.jpg") type("image/jpeg"));
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .heroTextSp {
    display: none;
  }

  .heroContent {
    width: 500px;
    padding: 40px 90px;
    position: absolute;
    top: 50%;
    left: max(calc((100% - 1200px) / 2));
    transform: translateY(-50%);
    border-radius: 50px;
    color: #fff;
    background: #008BC9;
    z-index: 1;
  }

  .heroInner {
    margin-bottom: 26px;
  }

  .heroContent .primaryButton {
    width: 100%;
  }

  /*------------------------------------
    news
  -------------------------------------*/
  .newsSection {
    padding: 100px 0;
  }

  .newsTitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2.3rem;
    font-weight: var(--font-w-bold);
    letter-spacing: 0.1em;
    color: var(--deepBlue);
  }

  .newsTitle::before {
    content: "";
    width: 18px;
    height: 24px;
    background: url(../img/icons/icon-news.svg) no-repeat;
    background-size: contain;
  }

  .newsList {
    margin-top: 20px;
  }

  .newsItem {
    border-bottom: 1px solid #D0D0D0;
  }

  .newsItem:first-child {
    border-top: 1px solid #D0D0D0;
  }

  .newsItemLink {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 20px;
    padding: 30px 74px 26px 30px;
    position: relative;
  }

  .newsItemLink::after {
    content: "";
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(../img/icons/icon-arrrow-right.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    transition: 0.2s;
  }

  .newsItemLink:hover::after {
    width: 35px;
    height: 35px;
    background: url(../img/icons/icon-arrrow-right-hover.svg) no-repeat;
    background-size: contain;
  }

  .newsImage {
    aspect-ratio: 230 / 137;
    border-radius: 10px;
    overflow: hidden;
  }

  .newsImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s;
  }

  .newsItemLink:hover .newsImage img {
    transform: scale(1.2);
  }

  .newsMeta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
  }

  .newsCategory {
    width: 148px;
    padding: 8.5px 0 10px;
    border-radius: 5px;
    font-size: 1.3rem;
    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 {
    margin-bottom: 18px;
    font-size: 1.8rem;
    font-weight: var(--font-w-bold);
    line-height: 1.5;
    transition: 0.2s;
  }

  .newsItemLink:hover .newsBody h3 {
    color: var(--deepBlue);
  }

  .newsBody p {
    margin: 0;
    font-size: 1.45rem;
  }

  .newsButtonWrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .outlineButton {
    min-width: 260px;
    padding: 17.5px 14px;
    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);
  }

  .outlineButton:hover {
    background-color: #008BC9;
    color: #fff;
  }

  /*------------------------------------
    worry
  -------------------------------------*/
  .worrySection {
    padding: 94px 0 100px;
    background: var(--paleCream);
  }

  .worryGrid {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
  }

  .worryCard {
    width: 320px;
    text-align: center;
  }

  .worryCard p {
    min-height: 130px;
    margin-top: 38px;
    padding: 32px 18px 24px;
    position: relative;
    background: var(--paleBlue);
    font-size: 1.7rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    border: 3px solid var(--deepBlue);
    border-radius: 20px;
  }

  .worryCard p::before {
    content: "";
    position: absolute;
    top: -27px;
  }

  .worryCard:nth-child(1) p::before {
    left: 152px;
    width: 27px;
    height: 27px;
    background: url(../img/speech-arrow-1.svg) no-repeat;
    background-size: contain;
  }

  .worryCard:nth-child(2) p::before {
    left: 144px;
    width: 29px;
    height: 27px;
    background: url(../img/speech-arrow-2.svg) no-repeat;
    background-size: contain;
  }

  .worryCard:nth-child(3) p::before {
    left: 138px;
    width: 27px;
    height: 27px;
    background: url(../img/speech-arrow-3.svg) no-repeat;
    background-size: contain;
  }

  /*------------------------------------
    about
  -------------------------------------*/
  .aboutSection {
    padding: 100px 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;
    text-align: center;
    font-size: 1.7rem;
    font-weight: var(--font-w-medium);
    line-height: 1.7;
  }

  .aboutHead {
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-top: 50px;
    padding-bottom: 16px;
    font-size: 2.4rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    border-bottom: 3px solid var(--deepBlue);
  }

  .pointCardList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
    align-items: stretch;
    column-gap: 20px;
    margin-top: 38px;
  }

  .pointCard {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    margin-top: 26px;
  }

  .pointCardInner {
    display: contents;
  }

  .pointCard h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 14px 14px;
    background-color: var(--deepBlue);
    color: #fff;
    border: 3px solid var(--deepBlue);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    font-size: 1.8rem;
    font-weight: var(--font-w-bold);
    line-height: 1.5;
    text-align: center;
  }

  .pointCard p {
    padding: 14px 18px;
    background-color: #fff;
    border: 3px solid var(--deepBlue);
    border-top: 0;
    border-radius: 0 0 20px 20px;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.7;
  }

  .pointBadge {
    display: block;
    position: absolute;
    top: -26px;
    left: 50%;
    z-index: 1;
    width: 130px;
    height: 65px;
    transform: translateX(-50%);
  }

  /*------------------------------------
    cta
  -------------------------------------*/
  .ctaSection {
    padding: 60px 0;
    position: relative;
    background-image: url("../img/cta-image.jpg");
    background-image: image-set(url("../img/cta-image.webp") type("image/webp"), url("../img/cta-image.jpg") type("image/jpeg"));
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .ctaBox {
    width: 720px;
    margin: 0 auto;
    padding: 42px 20px 50px;
    background: rgb(255 255 255 / 70%);
    text-align: center;
    border-radius: 20px;
  }

  .ctaHead {
    margin-bottom: 12px;
    font-size: 2.4rem;
    font-weight: var(--font-w-bold);
  }

  .ctaHead span {
    color: var(--accentOrange);
  }

  .ctaText {
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.7;
  }

  .ctaBox .primaryButton {
    width: 380px;
    margin: 0 auto;
  }

  /*------------------------------------
    support
  -------------------------------------*/
  .supportSection {
    padding: 100px 0 90px;
  }

  .supportList {
    display: grid;
    margin-top: 62px;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 38px;
  }

  .supportItem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 310px;
    min-height: 120px;
    padding: 34px 30px;
    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: 40px;
    height: 40px;
    position: absolute;
    top: 8px;
    left: 8px;
    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: 46px;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
    text-align: center;
  }

  .supporterSection {
    padding: 100px 0 220px;
    position: relative;
    background: var(--paleCream);
  }

  .supporterSection::after {
    content: "";
    width: 690px;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/supporter-illust.svg) no-repeat;
    background-size: contain;
  }

  .supporterInner {
    display: grid;
    grid-template-columns: 544px 1fr;
    align-items: start;
    gap: 76px;
  }

  .supporterImage {
    aspect-ratio: 544 / 304;
    border-radius: 20px;
    overflow: hidden;
  }

  .supporterContent {
    margin-top: -8px;
  }

  .supporterTitle {
    margin-bottom: 28px;
    padding-bottom: 12px;
    font-size: 2.4rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    border-bottom: 3px solid var(--deepBlue);
  }

  .supporterContent p {
    margin-bottom: 36px;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.7;
  }

  .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: 2rem;
  }

  .documentButton span::after {
    content: "";
    display: block;
    width: 25px;
    height: 30px;
    background: url(../img/icons/icon-pdf.svg) no-repeat;
    background-size: contain;
  }

  .documentButton:hover {
    background-color: #FFC379;
    color: #F36900;
  }

  .documentButton:hover span::after {
    background: url(../img/icons/icon-pdf-hover.svg) no-repeat;
  }

  /*------------------------------------
    industry
  -------------------------------------*/
  .industrySection {
    padding: 100px 0;
    position: relative;
  }

  .industryInner {
    display: grid;
    grid-template-columns: 1fr 544px;
    gap: 76px;
  }

  .industryTitle {
    margin-bottom: 28px;
    padding-bottom: 12px;
    font-size: 2.4rem;
    font-weight: var(--font-w-bold);
    color: var(--deepBlue);
    border-bottom: 3px solid var(--deepBlue);
  }

  .industryContent p {
    margin-bottom: 36px;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.7;
  }

  .industryList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .industryList li {
    padding: 14px 10px 15px;
    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: 22px;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
    text-align: right;
  }

  /*------------------------------------
    page
  -------------------------------------*/
  .pageSection {
    background: var(--paleCream);
  }

  .pageTitle {
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 42px;
    padding-bottom: 36px;
    position: relative;
    font-size: 2.3rem;
    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.6rem;
    font-weight: var(--font-w-bold);
    text-align: center;
  }

  /*------------------------------------
    contact
  -------------------------------------*/
  .contactSection {
    padding: 60px 0 108px;
  }

  .contactForm {
    margin-top: 50px;
  }

  .formGroup {
    border-top: 1px solid #B0B0B0;
  }

  .formGroup:last-child {
    border-bottom: 1px solid #B0B0B0;
  }

  .formField {
    display: flex;
    flex-wrap: wrap;
  }

  .formConfirm .formField .formControl,
  .contactForm--confirm .formField .formControl {
    padding: 32px 30px;
  }

  .formLabel {
    width: 340px;
    padding: 32px 30px;
    position: relative;
    background: #FFE3C6;
    font-size: 1.6rem;
    font-weight: var(--font-w-bold);
  }

  .formLabel.required::after {
    content: "必 須";
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 22px;
    position: absolute;
    top: 34px;
    right: 39px;
    background: #E66A2C;
    font-size: 1.2rem;
    font-weight: var(--font-w-medium);
    line-height: 1;
    color: #fff;
    border-radius: 9999px;
    padding-bottom: 2px;
  }

  .formControl {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 22px 30px;
  }

  .formInput {
    width: 100%;
    padding: 11px 20px 13px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    border: 1px solid #222;
    border-radius: 8px;
  }

  .formInput:focus {
    border-color: #222;
    outline: none;
  }

  .formInput::placeholder {
    color: #B0B0B0;
  }

  .input1 {
    width: 350px;
  }

  .formMail {
    width: 100%;
  }

  .formMailConfirmText {
    margin: 20px 0 16px;
    font-size: 1.6rem;
    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.6rem;
    font-weight: var(--font-w-bold);
  }

  .formCheckLabel a {
    text-decoration: underline;
  }

  .formCheckLabel a:hover {
    text-decoration: none;
  }

  .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: 295px;
    position: relative;
  }

  .formSelectWrap::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 15px;
    right: 22px;
    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: 13px 50px 14px 20px;
    background: #fff;
    font-size: 1.6rem;
    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: 50px;
    margin-top: 100px;
  }

  .formButton {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 58px;
    padding-bottom: 2px;
    background-color: #008BC9;
    font-size: 2rem;
    font-weight: var(--font-w-bold);
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: .2s;
  }

  .formButton:hover {
    background-color: #54BEE2;
  }

  .formButton.back {
    background-color: #79A5B8;
  }

  .formButton.back:hover {
    background-color: #C2C2C2;
  }

  .formAlertBox {
    max-width: 820px;
    margin: 30px auto 0;
    padding: 12px 20px 14px;
    background-color: #FFB692;
    border-radius: 10px;
    text-align: center;
  }

  .formAlertBox p {
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
  }

  p.formAlert,
  .mw_wp_form span.error {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    color: #E66A2C;
  }

  .formMail span.error {
    margin-top: 20px;
  }

  .formAlert::before,
  .mw_wp_form span.error::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/form-alert.svg) no-repeat;
    background-size: contain;
  }

  .formPrivacyAlert {
    width: 100%;
    margin-top: 16px;
    text-align: center;
  }

  .formPrivacyAlert .formAlert {
    justify-content: center;
  }

  .formPrivacyCheck {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    position: relative;
  }

  .formPrivacyCheck span.error {
    position: absolute;
    bottom: -38px;
    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: 22px;
    height: 15px;
    background: url(../img/confirm-check.svg) no-repeat;
    background-size: contain;
  }

  .formText {
    font-size: 1.6rem;
  }

  .completeInner {
    width: 900px;
    margin: 34px auto 0;
  }

  .completeText {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 2;
    text-align: center;
  }

  .completeBox {
    width: 500px;
    margin: 36px auto 0;
    padding: 26px 20px 30px;
    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: 10px;
    margin-top: 40px;
  }

  .completeNote p {
    padding-left: 22px;
    position: relative;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
  }

  .completeNote p::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }

  .completeButtonWrap {
    display: flex;
    justify-content: center;
    margin-top: 54px;
  }

  .completeButtonWrap .formButton {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }

  /*------------------------------------
    footer
  -------------------------------------*/
  .pageTop {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 69px;
    height: 69px;
    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: 62px 0 28px;
    color: #fff;
    background: var(--mainBlue);
  }

  .footerInner {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 60px;
  }

  .footerInfo h2 {
    margin: 0 0 18px;
    font-size: 2.2rem;
    font-weight: var(--font-w-bold);
  }

  .footerInfo p {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .footerInfo p:first-of-type {
    margin-bottom: 6px;
    font-weight: var(--font-w-bold);
  }

  .footerInfo a {
    color: #fff;
  }

  .footerLinks {
    display: flex;
    min-width: 380px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }

  .socialLinks {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .socialLinks a {
    display: block;
  }

  .socialLinks a:hover {
    opacity: .7;
  }

  .footerLinks nav {
    display: flex;
    align-items: center;
    gap: 38px;
  }

  .footerLinks nav a {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    color: #fff;
    text-decoration: underline;
  }

  .footerLinks nav a:hover {
    text-decoration: none;
  }

  .copyright {
    margin: 48px 0 0;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
    text-align: center;
  }

  /*------------------------------------
    news（一覧・詳細ページ共通）
  -------------------------------------*/
  .headerBackLink {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 20px 14px;
    font-size: 1.4rem;
    font-weight: var(--font-w-bold);
    line-height: 1.5;
    color: #222;
    border-left: 1px solid #D0D0D0;
    transition: .2s;
  }

  .headerBackLink:hover {
    color: var(--deepBlue);
  }

  .headerBackLink::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url(../img/arrow-back-hover.svg) no-repeat;
    background: url(../img/arrow-back.svg) no-repeat;
    background-size: contain;
  }

  .headerBackLink:hover::before {
    background: url(../img/arrow-back-hover.svg) no-repeat;
    background-size: contain;
  }

  .newsArchiveSection {
    padding: 56px 0 100px;
  }

  .newsArchiveInner {
    width: 1200px;
    margin: 58px auto 0;
  }

  .newsButtonWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 80px;
  }

  .newsButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    padding: 14px 10px 15px;
    background-color: #008BC9;
    font-size: 1.8rem;
    font-weight: var(--font-w-bold);
    color: #fff;
    border-radius: 9999px;
  }

  .newsButton:hover {
    background-color: var(--deepBlue);
  }

  /* 一覧ページ */
  .newsArchiveCard {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 100px 80px;
  }

  .newsFilterTabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
  }

  .newsFilterTab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px 11px;
    background-color: #E9E8E8;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: var(--font-w-bold);
    color: #222;
    border: 1px solid #E9E8E8;
    cursor: pointer;
    transition: 0.2s;
  }

  .newsFilterTab:hover {
    background: #004F95;
    color: #fff;
  }

  .newsFilterTab.is-active {
    background: transparent;
    border-color: var(--deepBlue);
    color: #222;
    pointer-events: none;
  }

  .newsFilterSelectWrap {
    display: none;
  }

  .boxPager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 100%;
    margin-top: 80px;
    text-align: center;
  }

  .boxPager li.pref {
    margin-right: 40px;
  }

  .boxPager li.next {
    margin-left: 40px;
  }

  .boxPager li a,
  .boxPager li div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    border: 1px solid var(--deepBlue);
    border-radius: 6px;
    transition: .2s;
  }

  .boxPager li a:hover,
  .boxPager li div {
    background: var(--deepBlue);
    font-weight: var(--font-w-bold);
    color: #fff;
  }

  .boxPager li.top a {
    background-image: url(../img/news/arrow-top-hover.svg);
    background-image: url(../img/news/arrow-top.svg);
    background-repeat: no-repeat;
    background-size: 13px 10px;
    background-position: center;
  }

  .boxPager li.top a:hover {
    background-image: url(../img/news/arrow-top-hover.svg);
  }

  .boxPager li.pref a {
    background-image: url(../img/news/arrow-pref-hover.svg);
    background-image: url(../img/news/arrow-pref.svg);
    background-repeat: no-repeat;
    background-size: 6px 10px;
    background-position: center;
  }

  .boxPager li.pref a:hover {
    background-image: url(../img/news/arrow-pref-hover.svg);
  }

  .boxPager li.next a {
    background-image: url(../img/news/arrow-next-hover.svg);
    background-image: url(../img/news/arrow-next.svg);
    background-repeat: no-repeat;
    background-size: 6px 10px;
    background-position: center;
  }

  .boxPager li.next a:hover {
    background-image: url(../img/news/arrow-next-hover.svg);
  }

  .boxPager li.end a {
    background-image: url(../img/news/arrow-end-hover.svg);
    background-image: url(../img/news/arrow-end.svg);
    background-repeat: no-repeat;
    background-size: 13px 10px;
    background-position: center;
  }

  .boxPager li.end a:hover {
    background-image: url(../img/news/arrow-end-hover.svg);
  }

  .boxPager .spNum {
    display: none;
  }

  /* 詳細ページ */
  .newsSingleSection {
    padding: 100px 0 105px;
  }

  .newsDetail {
    width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
  }

  .newsDetailHead {
    padding: 68px 180px 52px;
    background-image: url("../img/news/news_back.jpg");
    background-image: image-set(url("../img/news/news_back.webp") type("image/webp"), url("../img/news/news_back.jpg") type("image/jpeg"));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
  }

  .newsDetailCategory {
    width: auto;
    display: inline-block;
    padding: 8.5px 38px;
  }

  .newsDetailTitle {
    margin: 20px 0;
    font-size: 3.2rem;
    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: 50px 180px 55px;
  }

  .newsDetailBody p {
    margin-bottom: 50px;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .newsDetailBody picture,
  .newsDetailBody figure.wp-block-image {
    display: block;
    margin-bottom: 50px;
  }

  .newsDetailBody img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .newsDetailBody h2 {
    margin-bottom: 26px;
    padding: 0 0 3px 13px;
    border-left: 6px solid #008BC9;
    font-size: 2.6rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
  }

  .newsDetailBody h3 {
    position: relative;
    margin-bottom: 26px;
    padding-left: 20px;
    font-size: 2.4rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
  }

  .newsDetailBody h3::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 16px;
    left: 0;
    background-color: #008BC9;
    border-radius: 50%;
  }

  .newsDetailBody h4 {
    margin-bottom: 26px;
    padding-bottom: 13px;
    border-bottom: 1px solid #008BC9;
    font-size: 2.1rem;
    font-weight: var(--font-w-bold);
    line-height: 1.6;
  }

  .newsDetailBody .tableWrap {
    margin-bottom: 50px;
  }

  .newsDetailBody table {
    width: 100%;
    border: 1px solid var(--deepBlue);
    border-collapse: collapse;
  }

  .newsDetailBody th,
  .newsDetailBody td {
    padding: 16px 18px;
    border: 1px solid var(--deepBlue);
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }

  .newsDetailBody th {
    background-color: #E7F9FF;
    font-size: 1.6rem;
    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: 50px;
  }

  .newsDetailBody ul li {
    position: relative;
    padding-left: 20px;
    font-size: 1.6rem;
    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: 50px;
    padding: 28px 28px;
    background-color: #E7F9FF;
    border-radius: 12px;
  }

  .newsDetailBody blockquote p {
    margin-bottom: 0;
    font-size: 1.6rem;
  }

  .newsDetailBody a {
    color: #008BC9;
    text-decoration: underline;
  }

  .newsDetailBody a:hover {
    text-decoration: none;
  }

  .newsDetailBody>*:last-child {
    margin-bottom: 0;
  }
}