﻿/* =================================================================
   基本設定 & 共通クラス
================================================================== */
:root {
    --color-primary: #004AA6;
    --color-primary-dark: #003b85;
    --color-text-main: #1E293B;
    --color-text-light: #ffffff;
    --color-background: #EDF1F5;
    --header-height: 64px;
}
html>body{font-size: 16px;}
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-text-main);
    background-color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
}
*, *::before, *::after {
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
section{
    margin: 0;
}
html{
    margin: 0 !important;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.-box-blue{
    background-color: rgba(247, 250, 255, 1);
    border-radius: 24px;
    padding: 64px 16px;
}
.section {
    padding-top: 36px;
    padding-bottom: 36px;
}


.section-title {
    font-weight: 700;
    text-align: center;
    color: var(--color-text-main);
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 ;
}

.section-title__lead{
    font-size: 14px;
    text-align: center;
    font-weight: 400;
}


.br-sp { display: block; }
.br-pc { display: none; }
@media (min-width: 769px) {
    .section-title__lead{font-size: 20px;}
    a:hover {
        text-decoration: none;
        color: #004AA6;
    }
    
}
@media (min-width: 1024px) {
.-box-blue{ padding: 160px 52px; }
}
/* =================================================================
   ヘッダー
================================================================== */
.header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.07), 0 1px 2px -1px rgb(0 0 0 / 0.07);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 0 4.5rem;
    height: var(--header-height);
}

.header__logo img { width: 107px; height: 32px; }
.header__nav-pc, .header__actions { display: none; }
.header__actions-sp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
}
.header__actions-sp .button{
    max-width: 243px;
    width: 100%;
    min-height: 54px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-pc__list { display: flex; align-items: center; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.nav-pc__item { position: relative; }
.nav-pc__link { font-size: 14px; font-weight: 700; color: #1E293B; transition: color 0.3s; display: flex; align-items: center; padding: 1rem 0; }
.nav-pc__link svg { margin-left: 0.25rem; width: 1rem; height: 1rem; transition: transform 0.3s; }
.dropdown-menu {
    display: none; opacity: 0; position: absolute;
    top: 100%; left: 0; padding-top: 0.5rem;
    background-color: white; border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    min-width: 166px; transition: opacity 0.3s, transform 0.3s; transform: translateY(10px);
}
.dropdown-menu__inner { padding: 0.5rem; }
.dropdown-menu__link { display: block; padding: 0.75rem 1rem; font-size: 14px; font-weight: 500; border-radius: 0.5rem; }


.button {
    display: inline-block; font-weight: 700; text-align: center;
    border-radius: 9999px; transition: background-color 0.3s ease;
    cursor: pointer; border: 1px solid var(--color-primary);color:var(--color-primary);
    background-color: #ffffff;
}
.button--primary { background-color: var(--color-primary); color: #ffffff; }

.button--header { font-size: 13px; padding: 0.4375rem 1.5rem; }
.button--header-sp { font-size: 14px; padding: 7px 16px;height: 40px; }
.header.partner .button--header-sp { font-size: 14px;}
.header__actions .button--secondary { font-size: 14px; font-weight: 700; color: #212121; }

.bottom__cta {padding-top: 6rem;padding-bottom: 12rem; text-align:center;}
.bottom__cta .button {font-size: 16px;padding: 16px 24px;box-shadow: 0px 4px 20px 12px rgba(0, 74, 166, 0.12);transition: box-shadow 0.3s;}

.header__sp-menu-trigger { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.header__sp-menu-trigger button { display: flex; align-items: center; padding: 0; background: none; border: none; cursor: pointer; }
.header__sp-menu-trigger svg { width: 2rem; height: 2rem; color: var(--color-text); }
@media (max-width: 1090px) {
.header__inner {
    gap: 0 2.5rem;
}
}

@media (min-width: 769px) {
.nav-pc__link:hover { color: #003B85; text-decoration: none; cursor: pointer; }
.nav-pc__item:hover > .nav-pc__link svg { transform: rotate(180deg); }
.nav-pc__item:hover .dropdown-menu { display: block; opacity: 1; transform: translateY(0); }
.dropdown-menu__link:hover { color: var(--color-primary); text-decoration: none; }
.header__actions .button--primary:hover { background-color: var(--color-primary-dark); color: #ffffff;}
.header__sp-menu-trigger .button--primary:hover { background-color: var(--color-primary-dark); color: #ffffff;}
.header__actions .button--secondary:hover { color: var(--color-primary); }
.button--hero.button--primary:hover { background-color: var(--color-primary-dark);box-shadow:none; color: #ffffff; }
.header__actions .button:not(.button--primary):hover{
    background-color: #F5F9FF;
}
}


/* =================================================================
   モバイルメニュー
================================================================== */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: white; z-index: 50;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0; visibility: hidden;
    display: flex; flex-direction: column;
}
.mobile-menu.is-visible { opacity: 1; visibility: visible; }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); padding: 0 1rem; border-bottom: 1px solid #e5e7eb;box-sizing: content-box; }
.mobile-menu__header button svg { width: 2rem; height: 2rem; color: var(--color-text); }
.mobile-menu__nav { padding: 1rem; overflow-y: auto; }
.mobile-menu__nav ul, .mobile-menu__nav li { list-style: none; padding: 0; margin: 0; }
.mobile-menu__nav ul{margin: 0 -16px 0 0;}
.accordion-toggle, .mobile-menu__nav-link {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 10px 20px 10px 0;height:56px; border-bottom: 1px solid #e5e7eb; font-size: 14px; font-weight: 700;
    background: none; border-left: none; border-right: none; border-top: none; cursor: pointer;
    color: #1E293B;
    font-family:'Noto Sans JP', sans-serif;
}

.accordion-arrow { transition: transform 0.3s; color: #6b7280; }
.accordion-toggle.is-open .accordion-arrow { transform: rotate(180deg); }
.accordion-content { background-color: rgba(237, 241, 245, 0.56); max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out;}
.accordion-content a { display: flex; align-items: center; padding: 10px 16px; height: 56px; font-size: 14px; font-weight: 500; position: relative; }
.accordion-content a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 0;
    border-bottom: 1px solid #e5e7eb; 
}
.button--secondary {
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    transition: color 0.3s;
}

.mobile-menu .accordion-arrow,
.mobile-menu__nav-link svg {
    transition: transform 0.3s;
}
@media (min-width: 769px) {
    .button--secondary:hover {
        color: var(--color-primary);
        text-decoration: none;
    }
}

/* =================================================================
   heroエリア
================================================================== */
.bg-image-section{position: relative;}
.bg-image-section::after {
    content: "";
    position: absolute;
    top: -64px;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/themes/itwith/images/service/bg_hero-sp.jpg') no-repeat;
    background-size: 100% auto;
}
.hero { position: relative; }
.hero__main { padding: 2rem 0 3rem; }
.hero__sp-layout, .hero__pc-layout { width: 100%; margin: 0 auto; }
.hero__sp-layout { display: block; }
.hero__pc-layout { display: none; }
.hero__content-wrapper { position: relative; z-index: 1; overflow: hidden;}

.hero__pc-layout { display: none; }
.hero__image-sp-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
 }
.main-content.rpa .hero__image-sp-wrapper .hero__image-sp{min-width: 229px;max-width: 62%;}
.hero__image-sp { border-radius: 0.5rem; max-width: 100%; display:inline-block;image-rendering: -webkit-optimize-contrast; height: auto;
    vertical-align: bottom;}

.hero__text-sp { display: flex; flex-direction: column; text-align: left;margin-top: 32px;}
.support .hero__text-sp {margin-top:30%; }
.rpa .hero__text-sp {margin-top:15%; }
.hero__catch-sp { display: flex; flex-direction: column; gap: 0.5rem; }
.hero__catch-line { position: relative; display: flex; align-items: baseline; line-height: 1;}
.hero__catch-label { font-size: 14px; font-weight: 700; }
.hero__catch-number { font-size: 24px; font-weight: 700; color: var(--color-primary); margin: 0 0.25rem; }
.hero__catch-percent { font-size: 14px; font-weight: 700; color: var(--color-primary); position: relative; }
.hero__catch-note { display: none; position: absolute; top: -0.25rem; right: -0.75rem; font-size: 12px; font-weight: 700; color: #000000; }
.hero__service-name { font-size: 20px; font-weight: 700;margin: 0; }
.rpa .hero__service-name { font-size: 16px; }
.hero__title-sp { font-size:32px; font-weight: 700; line-height: 1.3; margin: 26px 0 0; }
.hero__cta-sp { display: flex; flex-direction: column; align-items: center; margin-top: 48px; }
.button--hero{width: 240px;font-size: 16px;padding: 16px;box-shadow: 0px 4px 20px 12px rgba(0, 74, 166, 0.12);transition: box-shadow 0.3s;}

/* PC Styles */
@media (min-width: 769px) {
    .bg-image-section::after {
        content: "";
        top: -64px;
        background: url('/wp-content/themes/itwith/images/service/bg_hero.jpg') no-repeat;
        background-size: 100% auto;
    }
    .hero__main { padding: 6rem 2rem 7rem; }
    .rpa .hero__main { padding: 60px 2rem 7rem; }
    .hero__sp-layout { display: none; }
    .hero__pc-layout { display: flex; gap: 20px; align-items: center; justify-content: space-between;}
    .hero__text-pc { display: flex; flex-direction: column; flex-shrink: 0;}
    .hero__catch-pc { display: flex; flex-direction: column; gap: 0.5rem; line-height: 1; }
    .hero__catch-line { font-size: 1rem; }
    .hero__catch-number { font-size: 3rem; }
    .hero__catch-percent { font-size: 1rem;}
    .hero__catch-note {display: block; font-size: 14px; top: -16px; right: -28px; }
    .hero__service-name { font-size: 32px; }
    .rpa .hero__service-name { font-size: 24px; }
    .hero__title-pc { font-size: clamp(32px, 4.5vw, 56px); line-height: 1.5;margin: 0;padding-top: 40px; font-family: 'Noto Sans JP', sans-serif;font-weight: 700; }
    .hero__cta-pc { padding-top: 40px; }
    .rpa .hero__image-pc-wrapper{text-align: center;}
    .button--hero{width: 240px;font-size: 16px;padding: 16px;}
    .hero__image-pc { border-radius: 0.5rem; }
}

.main-content { padding-top: var(--header-height); position: relative;}

.page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-background);
    padding: 30px 16px;
    width: 100%;
    min-height: 120px;
    text-align: center;
}
.page-header.-bg-wave{
    background-color: rgba(230, 240, 255, 0.4);
    background-image: url('/wp-content/themes/itwith/images/common/wave-sp.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    text-align: center;
}
.main-content.faq .page-header{
    background-color: rgba(230, 240, 255, 0.4);
}
.page-title {
    color: #1E293B;
    font-size: 24px;
    font-weight: bold;
}
@media (min-width: 769px) {
    .page-header {
        min-height: 240px;
     }
    .page-title { font-size: 56px;}
    .page-header.-bg-wave{
        background-image: url('/wp-content/themes/itwith/images/common/wave.svg');
        min-height: 312px;
    }
}

/*3カラムcard*/
.card-grid {
    width: 100%;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0px 12px 32px 10px rgba(214, 225, 235, 0.54);
}
.card-item__title{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}
.card-item__figure {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 240, 255, 0.54);
    border-radius: 24px;
    width: 160px;
    height: 160px;
}
.card-item__label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.card-item__label-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    text-align: left;
}
.card-item__label-icon {
    width: 32px;
    height: 32px;
}
.card-item__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    color: #334155;
}

/* PC表示のスタイル */
@media (min-width: 769px) {
    .card-grid {
        margin-top: 4.5rem;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .card-item {
        gap: 32px;
        background-color: #ffffff;
    }
    .card-item__title{
        font-size: 24px;
    }
    .card-item__figure {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .card-item__label {
        margin-bottom: 32px;
    }
    .card-item__label-text {
        font-size: 24px;
    }
    .card-item__desc {
        font-size: 16px;
    }
}

/* =================================================================
   STEPエリア
================================================================== */

.step-wrapper {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px; 
}
.step-header{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.step-item {
    display: flex;
    flex-direction: column; 
    gap: 24px;
}
.step-image {
    width: 100%;
    position: relative;
}

.step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0px 12px 32px 10px rgba(214, 225, 235, 0.54);
    image-rendering: -webkit-optimize-contrast;
}
.step-content {
    width: 100%;
}
.step-number {
    font-family: Arial, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: rgba(26, 117, 255, 0.32);
    line-height: 1;
}
.step-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #004AA6;
    line-height: 1.3;
    margin-bottom: 16px;
}
.step-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.7;
    text-align: left; 
}
.step-notice{
    position: relative;
    padding-left: 1.2em;
    font-size: 12px;
    line-height: 1.5;
    color: #475569;
}
.step-notice::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
    color: #475569;
}
.speech-bubble{
    position: absolute;
    left: 18px;
    top: -27px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    padding: 8px 12px;
    border-radius: 12px;
    background-color: #1a75ff;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
    z-index: 30;
    width: max-content;
}
.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 32px;
    border-style: solid;
    border-width: 15px 9px 0 9px;
    border-color: #1a75ff transparent transparent;
    translate: -50% 100%;
}
.speech-bubble img{
    box-shadow: none;
}
.step-note {
    font-size: 14px;
    color: #334155;
    line-height: 1.7;
    text-align: center;
}
@media screen and (min-width: 769px) {
    .step-wrapper {
        gap: 130px;
    }
    .step-wrapper.-box-blue{
        padding: 120px 16px;
    }
    .step-item {
        max-width: 908px;
        width: 100%;
        margin: 0 auto;
        flex-direction: row; 
        text-align: left;
        gap: 3%;
    }
    .step-item.is-reverse {
        flex-direction: row-reverse;
    }
    .step-image{
        width: auto;
        flex-shrink: 1;
    }
    .step-content {
        position: relative;
        padding-left: 120px;
    }
    .step-number {
        font-size: 90px;
        position: absolute;
        left: 0;
        top: -36px;
    }
    .step-title {
        font-size: 32px;
        gap: 20px;
        line-height: 1.5;
    }
    .step-text {
        font-size: 16px;
    }
    .speech-bubble{
        left: 50px;
        top: -27px;
        font-size: 16px;
    }
    .speech-bubble::after {
        left: 50%;
    }
}
@media screen and (max-width: 768px) {
    .step-item:nth-child(even of .step-item) .step-content{
        order: 2;
    }
    .step-item:nth-child(even of .step-item) .step-image{
        order: 1;
    }
}

/* =================================================================
   CTAエリア
================================================================== */

.cta-wrapper {
  background-color: #003B85;
  border-radius: 24px;
  padding: 48px 16px;
  text-align: center;
  color: #fff;
  max-width: 1160px;
  margin: 0 auto
}
.cta-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 32px;
}
.inline-pc {
    display: none;
}

.cta-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #ffffff;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.cta-buttons .button{
    max-width: 240px;
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

@media screen and (min-width: 769px) {
    .section.cta{
        padding-top: 150px;
    }
    .cta-wrapper {
        padding: 72px 99px;
    }
    .cta-title {
        font-size: 40px;
        line-height: 1.8;
        margin-bottom: 40px;
    }
    .inline-pc {
        display: inline-block;
    }
    
    .cta-text {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .cta-buttons {
        flex-direction: row;
        gap: 28px;
    }
    .cta-buttons .button{
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }
    .cta-buttons .button.button--primary:hover{
        background-color: #002C63;
        border-color: #002C63;
        color: #ffffff;
    }
    .cta-buttons .button:not(.button--primary):hover{
        background-color: #F5F9FF;
    }
}

/* =================================================================
   よくある質問
================================================================== */
.section.faq{
    padding-top: 44px;
    padding-bottom: 100px;
}
.faq-container{
    width: 100%;
    margin: 0 auto;
    padding: 0 8px;
}
.faq-list {
    list-style: none;
    padding: 0;
}
.faq-item {
    border-bottom: 1px solid #CBD5E1;
}
.faq-question {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px 40px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #1E293B;
    line-height: 1.7;
    text-align: left;
    position: relative;
}
.faq-question span{
    background-image: url('/wp-content/themes/itwith/images/common/faq_q.svg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 16px auto;
    padding-left: 24px;
}
.faq-question::after,
.faq-question::before {
    content: "";
    position: absolute;
    right: 5px;
    width: 14px;
    height: 2px;
    background-color: #64758B;
    transition: transform 0.3s ease;
}
.faq-question::before {
    transform: rotate(90deg);
}
.faq-question.is-open::before {
    transform: rotate(0deg);
}
.faq-answer {
    background-color:#ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding: 0 0 36px 24px;
    margin: 0;
    line-height: 1.7;
    color: #64758B;
    font-size: 14px;
    font-weight: 400;
    background-image: url('/wp-content/themes/itwith/images/common/faq_a.svg');
    background-repeat: no-repeat;
    background-position: left top 3px;
    background-size: 16px auto;
}
@media screen and (min-width: 769px) {
    .section.faq{
        padding-top: 72px;
        padding-bottom: 90px;
    }
    .faq-container{
        max-width: 820px;
        padding: 0;
    }
    .faq-item{
        padding: 0 24px;
    }
    .faq-question {
        padding: 32px 48px 32px 0;
        font-size: 16px;
    }
    .faq-question span{
        padding-left: 32px;
    }
    .faq-answer p {
        padding: 0 0 42px 32px;
        font-size: 16px;
    }
}
/* =================================================================
   404
================================================================== */
.section.not-found {
    padding-top: 120px;
    padding-bottom: 120px;
}
.section.not-found .container{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
}
.section.not-found .section-title{
    font-size: 24px;
    line-height: 1.7;
}
.section.not-found .section-title__lead{
    text-align: left;
}
.section.not-found .button{
    max-width: 170px;
    font-size: 14px;
}
.section.not-found .button svg{
    margin-left: 5px;
}
@media screen and (min-width: 769px) {
    .section.not-found {
        padding-top: 240px;
        padding-bottom: 200px;
    }
    .section.not-found .container{
        gap: 48px;
    }
    .section.not-found .section-title{
        font-size: 32px;
    }
    .section.not-found .section-title__lead{
        text-align: center;
    }
    .section.not-found .cta-buttons{
        margin-top: 40px;
    }
    .section.not-found .button{
        max-width: 184px;
        transition: background-color 0.3s ease;
        font-size: 16px;
    }
    .section.not-found .button:hover{
        background-color: #F5F9FF;
    }
}
/* =================================================================
   フッター
================================================================== */
.footer {
    color: #fff;
    background-color: #fff;
}
.footer__wave {
    line-height: 0;
    margin-bottom: -1px;
}
.footer__wave svg {
    width: 100%;
    height: 60px;
}
.footer__main {
    background-color: #004AA6;
    padding: 40px 0 30px;
}
.footer__content{
    padding: 0 16px;
}
.footer__logo-area {
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer__logo {
    width: 148px;
    height: auto;
}
.footer__nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}
.footer__nav-title {
    font-size: 16px;
    font-weight:700;
    margin-bottom: 24px;
}
.footer__nav-column li { margin-bottom: 10px;font-size: 0;}
.footer__nav-column li:last-child{
    margin-bottom: 0;
}
.footer__nav-column a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}
.footer__bottom {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    padding: 64px 16px 0;
}
.footer__bottom-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}
.footer__bottom-links li{
    font-size: 0;
}
.footer__bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}
.footer__copyright {
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.64);
}

@media (min-width: 769px) {
    .footer__wave svg {
        height: 100px;
    }
    .footer__main {
        padding: 80px 0 40px;
    }
    .footer__content {
        display: flex;
        justify-content: space-between;
    }
    .footer__logo-area {
        width: 20%;
        margin-bottom: 10px;
        align-items: flex-end;
    }
    .footer__nav-grid {
        width: 75%;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    .footer__nav-title {
        font-size: 18px;
    }
    .footer__nav-column a {
        font-size: 14px;
        position: relative;
    }
    .footer__nav-column a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 3px;
        width: 100%;
        height: 1px;
        background-color: #ffffff;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .footer__nav-column a:hover::after {
        opacity: 1;
    }
    .footer__bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 150px;
        padding: 30px 0 0 24px;
    }
    .footer__bottom-links {
        margin-bottom: 0;
        gap: 32px;
    }
    .footer__bottom-links a {
        font-size: 14px;
        position: relative;
    }
    .footer__bottom-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 3px;
        width: 100%;
        height: 1px;
        background-color: #ffffff;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .footer__bottom-links a:hover::after {
        opacity: 1;
    }
    .footer__copyright {
        font-size: 14px;
    }
}
@media (max-width: 430px) {
    .footer__nav-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 64px;
    }
    .footer__bottom-links {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 64px;
    }
}

.section-subtitle{text-align: center; font-size: 14px;}
/* =================================================================
   PC表示 (1024px以上) のスタイル
================================================================== */
@media (min-width: 769px)  {
.section { padding-top: 90px; padding-bottom: 90px; }
.br-sp { display: none; }
.br-pc { display: block; }
}
@media (min-width: 769px) {
    .container { padding-left: 24px; padding-right: 24px; }
    .section-title { font-size: 3rem; line-height: 1.5; }
    .section-subtitle { font-size: 16px; line-height: 2; }
    .header__nav-pc, .header__actions { display: flex; gap: 8px;}
    .header__actions { margin-left: auto; }
    .header__actions-sp{display: none;}
    .header__sp-menu-trigger { display: none; }
    .footer__inner { padding: 75px 0; }
    .footer__nav-list { flex-direction: row; gap: 2.125rem; }
    .footer__copyright { font-size: 14px; }
}



/* =================================================================
   ページネーション
================================================================== */
.main-content .wp-pagenavi{
    margin-top: 64px;
}
.main-content .wp-pagenavi a, .main-content .wp-pagenavi span:not(.extend){
    background-color: #ffffff;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-size: 14px;
    color: #1E293B;
}
.main-content .wp-pagenavi .previouspostslink, .main-content .wp-pagenavi .nextpostslink{
    font-size: 0;
}
.main-content .wp-pagenavi .previouspostslink::before, .main-content .wp-pagenavi .nextpostslink::before{
    border: 0px solid #1E293B;
}
.main-content .wp-pagenavi .nextpostslink::before{
    border-width: 2px 2px 0 0;
}
.main-content .wp-pagenavi .previouspostslink::before{
    border-width: 0 0 2px 2px;
}
.main-content .wp-pagenavi a:hover, .main-content .wp-pagenavi a.current, .main-content .wp-pagenavi span:not(.extend):hover, .main-content .wp-pagenavi span:not(.extend).current{
    color:#ffffff;
    background-color: #004AA6;

}

@media (min-width: 769px)  {

}