/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Inter', Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

/* header */

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8px 32px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 50;
    transition: box-shadow 0.3s ease;
}
.header a{
    text-decoration: none;
}
.header-main {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.header-logo {
    width: 240px;
    height: 31px;
}

.header-title {
    width: fit-content;
    font-family: 'Zen Maru Gothic', Helvetica;
    font-weight: bold;
    color: #020953;
    font-size: 24px;
    line-height: 24px;
    white-space: nowrap;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 20px;
    border-radius: 100px;
}

.header-phone-icon {
    width: 25px;
}

.header-phone-number {
    font-family: 'Noto Sans JP', Helvetica;
    font-size: 32px;
    text-align: right;
    line-height: normal;
    font-weight: bold;
    white-space: nowrap;
}
.header-phone-number a {
    color: #333333;
}

.header-mail-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 20px 7px;
    background-color: #fb932b;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.5s;
}

.header-mail-button:hover {
    background-color: #e88520;
}

.header-mail-icon {
    width: 22.6px;
}

.header-mail-text {
    font-family: 'Zen Maru Gothic', Helvetica;
    font-weight: bold;
    color: white;
    font-size: 24px;
    text-align: right;
    line-height: normal;
}
header nav.header-nav {
    border: none;
    transition: all 0.3s;
}
header .header-nav ul {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    margin-bottom: 0;
}
header .header-nav ul li a  {
    color: #333333;
    font-size: 18px;
}
.openbtn {
    position: relative;
    z-index: 2000;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: none;
}
@media screen and (max-width:768px) {
    .openbtn {
        display: block;
    }
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    background-color: #2755A8;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 13px;
}
.openbtn span:nth-of-type(2) {
    top: 19px;
}
.openbtn span:nth-of-type(3) {
    top: 25px;
}
.openbtn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 5px;
    left: -1px;
    color: #2755A8;
    font-size: 0.6rem;
    text-transform: uppercase;
}
.sp-header-nav {
    display: none;
}
body.active {
    overflow: hidden;
}
body.active .sp-header-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255, 255, 255, 1);
    padding: 60px 30px 30px 30px;
}
.sp-header-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    border-top: none;
}
.sp-header-menu li a {
    color: #2755A8;
    font-weight: 700;
    padding-top: 12px;
    padding-bottom: 12px;
    display: block;
    height: auto;
    line-height: normal;
}
.sp-header-menu li {
    border-bottom: none;
}
.sp-header-menu li:not(:first-child) a {
    border-top: 1px solid #b3b3b3;
}
.sp-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sp-contact p {
    font-size: 14px;
}
.sp-contact .sp-phone-number-container {
    width: 100%;
}
/* レスポンシブ対応 */
@media screen and (min-width:1025px) and (max-width: 1440px) {
    .header {
        padding: 16px;
    }
    .header-phone-icon {
        width: clamp(1rem, -0.3893rem + 2.1687vw, 1.5625rem);
    }
    .header-phone-number {
        font-size: clamp(1.5rem, 0.2651rem + 1.9277vw, 2rem);
    }
    .header-mail-icon {
        width: clamp(1.125rem, 0.4149rem + 1.1084vw, 1.4125rem);
    }
    .header-mail-text {
        font-size: clamp(1.125rem, 0.1988rem + 1.4458vw, 1.5rem);
    }
    .header-contact {
        gap: 8px;
    }
}
@media (max-width: 1024px) {
    .header {
        height: auto;
        padding: 16px;
    }
    .header-contact {
        position: absolute;
        top: 5px;
        right: 5px;
    }
    .header-phone-icon {
        width: 16px;
    }
    .header-phone-number {
        font-size: 24px;
    }
    .header-mail-icon {
        width: 18px;
    }
    .header-mail-text {
        font-size: 18px;
    }
    header .header-nav ul li a  {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 8px;
        overflow-y: scroll;
    }
    .header-contact {
        display: none;
    }
    .header-phone-number {
        font-size: 24px;
    }

    .header-title {
        font-size: 18px;
    }

    .header-mail-text {
        font-size: 18px;
    }
    header nav.header-nav {
        display: none;
    }
        .sp-contact .phone-number {
        font-size: 40px;
        color: #2755A8;
    }
    .phone-contact{
        text-align: center;
    }
    .email-contact .contact-button{
        background-color: #2755A8;
        color: #fff;
        font-size: 20px;
        padding: 10px 20px;
        border-radius: 50px;
        display: block;
        margin: auto;
        width: fit-content;
    }
    .email-reception{
        text-align: center;
        margin-top: 10px;
    }
    .sp-header-nav{
        overflow-y: scroll;
    }
}
@media screen and (max-width: 500px) {
    .header-title {
        font-size: clamp(0.75rem, 0.0833rem + 3.3333vw, 1.125rem);
    }
}




.main-container {
    width: 100%;
    min-height: 100vh;
    background-color: white;
    padding-top: 13px;
}



/* Hero Image Section */
.hero-image-section{
    padding-bottom: 0;
}

.hero-image {
    display: block;
    width: 100%;
}

/* Main Content Section */
.main-content-section {
    width: 1000px;
    margin: 50px auto;
    padding-top: 0;
    padding-bottom: 0;
}

.content-image {
    width: 500px;
}

.concerns-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: right;
}

.concern-badge {
    height: 48px;
    background-color: #0046a9;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 13px 26px;
    font-family: 'Inter', Helvetica;
    font-weight: bold;
    color: white;
    font-size: 18px;
    line-height: normal;
}

.main-header {
    font-family: 'Inter', Helvetica;
    font-weight: 600;
    font-size: 28px;
    text-align: center;
    line-height: normal;
}

.header-text-1 {
    color: #333333;
}

.header-text-2 {
    color: #0046a9;
    font-size: 32px;
}

.main-contents{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-text {
    font-family: 'jsMath-cmbx10-cmbx10', Helvetica;
    font-weight: normal;
    color: #333333;
    font-size: 24px;
    text-align: center;
    line-height: normal;
    font-weight: bold;
    margin-top: 50px;
}

@media screen and (max-width:1000px){
    .main-content-section {
      width: 90%;
      margin: 30px auto;
    }
    .main-header {
    font-size: 18px;
    margin-bottom: 15px;
}

.header-text-2 {
    font-size: 20px;
}
    .main-contents{
      display: block;
    }
    .concerns-container {
    gap: 10px;
    }
    .concern-badge {
    margin: auto;
    height: auto;
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}
    .content-image {
      display: block;
      width: 80%;
      margin: auto;
    }
    .bottom-text{
        margin-top: 30px;
        font-size: 16px;
    }
    .concern-1,
    .concern-2,
    .concern-3 {
    width: auto;
    padding: 10px 20px;
}
}

/* Benefits Section */
.benefits-section {
    width: 100%;
    background-image: url('https://www.kotegawa-law.com/wp-content/themes/houmu/assets/images/retirement-agency/blue_back.jpg');
    background-size: cover;
    background-position: 50% 50%;
    padding: 40px 0;
}

.benefits-title {
    margin-bottom: 24px;
    font-family: 'Inter', Helvetica;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    line-height: normal;
}

.benefits-text-white {
    color: white;
}

.benefits-text-yellow {
    color: #fccf00;
}

.benefits-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-badge {
    height: 34px;
    background-color: white;
    color: #4894ff;
    font-family: 'Inter', Helvetica;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.benefit-badge-1 {
    width: 120px;
}

.benefit-badge-2 {
    width: 220px;
}

.benefit-badge-3 {
    width: 160px;
}

.contact-info {
    text-align: center;
    margin-bottom: 24px;
}

.phone-number {
    font-family: 'Libre Bodoni', Helvetica;
    font-weight: normal;
    color: #ffffff;
    font-size: 80px;
    line-height: normal;
}

.business-hours {
    font-family: 'Inter', Helvetica;
    font-weight: 500;
    color: white;
    font-size: 20px;
    line-height: normal;
    margin-top: 16px;
}

.consultation-button {
    display: block;
    width: 350px;
    margin: auto;
    text-align: center;
    text-decoration: none;
    background-color: #fccf00;
    border: none;
    padding: 23px 43px;
    border-radius: 50px;
    font-family: 'Inter', Helvetica;
    font-weight: 900;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0);
    transition: 0.3s ease;
}

.consultation-button:hover {
    display: block;
    margin: auto;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width:1000px){
    .benefits-section {
        padding: 30px 0;
    }
    .benefits-title {
    margin-bottom: 20px;
    font-size: 20px;
    }
    .benefits-badges {
    gap: 10px;
    margin-bottom: 20px;
}

.benefit-badge {
    height: auto;
    font-size: 16px;
}
.benefit-badge-1,
.benefit-badge-2,
.benefit-badge-3
 {
    width: auto;
    padding: 5px 10px 3px;
}
.phone-number {
    font-size: 50px;
}
.business-hours {
    margin-top: 0;
    font-size: 16px;
}
.consultation-button {
    width: 300px;
    padding: 10px 20px;
    font-size: 20px;
}

}

/* Call to Action Section */
.cta-section {
    width: 1000px;
    margin: auto;
    padding: 50px 0;
}

.cta-container {
    margin: 0 auto;
}

.cta-title {
    text-align: center;
    font-family: 'Inter', Helvetica;
    font-weight: 600;
    color: #0046a9;
    font-size: 32px;
    line-height: normal;
    margin-bottom: 30px;
}

.cta-description {
    font-family: 'Inter', Helvetica;
    font-weight: normal;
    color: #333333;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 30px;
    text-align: center;
}

.risk-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.risk-card {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.risk-image {
    width: 100%;
    height: 183px;
    object-fit: cover;
}

.risk-content {
    padding: 10px 0 12px;
}

.risk-title {
    font-family: 'Inter', Helvetica;
    font-weight: bold;
    color: #333333;
    font-size: 18px;
    text-align: center;
    margin-bottom: 0;
}

@media screen and (max-width:1000px){
    .cta-section {
    width: 90%;
    padding: 30px 0;
    }
    .cta-title {
    font-size: 20px;
    margin-bottom: 15px;
}
.cta-description {
    font-size: 16px;
    margin-bottom: 20px;
}
    .risk-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    }
    .risk-image {
    height: auto;
}
.risk-content {
    padding: 5px 10px;
}
.risk-title {
    font-size: 16px;
}
}

/* Contact Section */
.contact-section {
    width: 100%;
    background-color: #E3F7FF;
    padding:50px 0
}

.contact-container {
    width: 1000px;
    margin: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-title {
    font-family: 'Inter', Helvetica;
    font-weight: 600;
    color: #333333;
    font-size: 32px;
    line-height: normal;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-family: 'Inter', Helvetica;
    font-weight: 600;
    color: #0046a9;
    font-size: 22px;
    line-height: normal;
}

.contact-card {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 32px;
    background-color: white;
    border: none;
    box-shadow: none;
    padding: 30px;
}

.contact-text {
    font-family: 'Inter', Helvetica;
    font-weight: normal;
    color: #333333;
    font-size: 18px;
    line-height: normal;
}

.contact-bold {
    font-weight: bold;
}

.warning-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 800px;
    margin: auto;
    margin-bottom: 32px;
}

.warning-card {
    background-color: #e55753;
    border-radius: 20px;
    border: 5px solid white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
}

.warning-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.warning-title {
    font-family: 'Inter', Helvetica;
    font-weight: bold;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: normal;
    margin-bottom: 8px;
}

.warning-description {
    font-family: 'Inter', Helvetica;
    font-weight: normal;
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: normal;
    flex: 1;
    display: flex;
    align-items: center;
}

.contact-footer {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.contact-footer-text {
    font-family: 'Inter', Helvetica;
    font-weight: normal;
    color: #333333;
    font-size: 18px;
    text-align: center;
    line-height: normal;
}

.contact-footer-bold {
    font-weight: bold;
}
@media screen and (max-width:1000px){
    .contact-section {
    padding:30px 0
}
.contact-container {
    width: 90%;
}
.contact-header {
    margin-bottom: 15px;
}

.contact-title {
    font-size: 20px;
    margin-bottom: 5px;
}
.contact-subtitle {
    font-size: 16px;
}
.contact-card {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 20px;
    padding: 20px;
}

.contact-text {
    font-size: 16px;
}
.warning-cards-grid {
    gap: 10px;
    width: 100%;
    margin: auto;
    margin-bottom: 32px;
}
.warning-card {
    border-radius: 14px;
    border: 3px solid white;
    display: flex;
    padding: 10px;
}

.warning-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
}

.warning-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.warning-description {
    font-size: 16px;
    margin-bottom: 0;
}
.contact-footer-text {
    font-size: 16px;
}

}
@media screen and (max-width:600px){
.warning-cards-grid {
display: block;
}
.warning-card{
    margin-bottom: 15px;
}
}

/* Service Overview Section */
.service-overview-section {
    width: 1000px;
    margin: 50px auto;
    padding-top: 0;
    padding-bottom: 0;
}

.service-title {
    font-family: 'Inter', Helvetica;
    font-weight: bold;
    color: #0046a9;
    font-size: 32px;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
}
.service-items{
    width: 90%;
    margin: auto;
    min-width: 1000px;
}
.service-item {
    display: flex;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    border: none;
    align-items: center;
    padding: 30px 50px;
    margin-bottom: 30px;
}

.service-icon {
    width: 120px;
}


.service-item-title {
    font-family: 'Inter', Helvetica;
    font-weight: bold;
    color: #0046a9;
    font-size: 24px;
    line-height: normal;
    margin-bottom: 19px;
}

.service-item-description {
    font-family: 'Inter', Helvetica;
    font-weight: 500;
    color: black;
    font-size: 18px;
    line-height: normal;
    white-space: pre-line;
}
.service-content{
    width: 730px;
}

@media screen and (max-width:1000px){
    .service-overview-section {
    width: 90%;
    margin: 30px auto;
}
.service-title {
    font-size: 20px;
    margin-bottom: 15px;
}
.service-items{
    width: 100%;
    min-width: unset;
}
.service-item {
    display: block;
    padding: 15px;
    margin-bottom: 15px;
}
.service-icon-container{
    margin-bottom: 10px;
}
.service-icon {
    display: block;
    margin: auto;
    width: 70px;
}
.service-item-title {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.service-item-description {
    font-size: 16px;
}
.service-content{
    width: auto;
}
}

/* Hero Section */
.hero-section{
    width: 100%;
    background-color: #E3F7FF;
    padding: 50px 0;
}
.hero-content{
    width: 1000px;
    margin: auto;
}

.hero-title{
    color: #2755A8;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.hero-card{
    background-color: #fff;
    padding: 30px 50px;
}

.hero-card .bb{
    color: #fff;
    background-color: #2755A8;
    padding: 5px 10px;
    width: fit-content;
    margin-bottom: 10px;
    font-weight: unset;
    font-size: 18px;
}
.bb2{
    margin-top: 20px;
}
.hero-card p span{
    font-weight: bold;
    background: linear-gradient(rgba(0,0,0,0) 70%, #FCCF00 70%);
}

.hero-card-title{
    font-size: 24px;
    color: #2755A8;
    text-align: center;
    padding-bottom:20px;
    font-weight: bold;
}
.hero-content > p{
    margin-top: 30px;
}
@media screen and (max-width:1000px){
    .hero-section{
    padding: 30px 0;
}
.hero-content{
    width: 90%;
}
.hero-title{
    font-size: 20px;
    margin-bottom: 15px;
}
.hero-card{
    padding: 20px;
}
.hero-card-title{
    font-size: 18px;
}
.hero-card .bb{
    margin: 0 auto 10px;
}
.hero-card .bb2{
    margin-top: 20px;
}
}

/* Strengths Section */
.strengths-section {
    width: 1000px;
    margin: 50px auto;
    padding-top: 0;
    padding-bottom: 0;
}

.strengths-title {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: #2755a8;
    font-size: 32px;
}

.strengths-image {
    width: 100%;
}
@media screen and (max-width:1000px){
    .strengths-section {
    width: 90%;
    margin: 30px auto;
}
.strengths-title {
    margin-bottom: 15px;
    font-size: 20px;
}
}

/* Process Section (Pricing Table) */

.pricing-section {
    padding: 48px 16px;
    background-color: white;
    width: 100%;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #342246;
}

#pricing .page section h2:not(.single-post-title) {
    margin-bottom: 0;
}

.pricing-card {
    width: 100%;
    border: 3px solid #fe6e0b;
    overflow: hidden;
}

.pricing-banner {
    display: flex;
    flex-wrap: wrap;
}

.pricing-banner-left {
    flex: 1;
    background-color: #fe6e0b;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-banner-text {
    font-weight: bold;
    color: white;
    font-size: 32px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 42px;
    white-space: nowrap;
}

.pricing-banner-right {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-monthly-text {
    font-weight: bold;
    color: #fe6e0b;
    font-size: 32px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 32px;
}

.pricing-price-container {
    font-weight: bold;
    text-align: center;
}

.pricing-price-tax {
    color: #fe6e0b;
    letter-spacing: 0.29px;
}

.pricing-price {
    color: #fe6e0b;
    font-size: 48px;
    letter-spacing: 1.15px;
    line-height: 48px;
}

.pricing-price-suffix {
    color: #fe6e0b;
    font-size: 32px;
    letter-spacing: 0.51px;
    line-height: 32px;
}

.pricing-table-container {
    width: 100%;
}

.pricing-table-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px;
    background-color: #ececec;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-table-label:hover {
    background-color: #e0e0e0;
}

.pricing-table-label-text {
    font-weight: bold;
    color: black;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 41px;
    white-space: nowrap;
    margin-bottom: 0;
}

.pricing-table-label-icon {
    width: 18.19px;
    height: 15.75px;
    transition: transform 0.3s ease;
}

.pricing-table-wrapper {
    padding-top: 59px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: white;
}

.pricing-table {
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.pricing-table-head {
    background-color: white;
}

.pricing-table-head-cell {
    width: 150px;
    background-color: white;
}

.pricing-plan-header {
    background-color: #999999;
    padding: 24px;
    position: relative;
}

.pricing-plan-header.basic {
    background-color: #013183;
}

.pricing-plan-name {
    font-weight: bold;
    color: white;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 28.8px;
}

.pricing-recommended-badge {
    position: absolute;
    width: 100%;
    height: 29px;
    top: -25px;
    background-color: #fb8715;
}

.pricing-recommended-text {
    font-weight: 900;
    color: white;
    font-size: 12px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 16.8px;
    white-space: nowrap;
    padding: 6px 8px;
}

.pricing-recommended-arrow {
    position: absolute;
    width: 18px;
    height: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-table-body {
    width: 100%;
}

.pricing-table-cell {
    border: 1px solid #d5d5d5;
    padding: 8px;
    vertical-align: middle;
}

.pricing-table-cell.header {
    background-color: #f5f5f5;
}

.pricing-table-tooltip {
    color: #1d357b;
    font-size: 10px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 18px;
}

.pricing-plan-description {
    color: #333333;
    font-size: 12px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 19.2px;
}

.pricing-row-title {
    font-weight: bold;
    color: #1d357b;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 14px;
}

.pricing-fee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-fee {
    font-weight: bold;
    color: #333333;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 28.8px;
}

.pricing-fee-suffix {
    font-weight: 300;
    font-size: 14px;
    margin-left: 4px;
}

.pricing-fee-tax {
    font-weight: 300;
    color: #333333;
    font-size: 13px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 28.8px;
}

.pricing-cell-highlight {
    background-color: #fcf8e3;
    width: 100%;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-check-icon {
    height: 15px;
    width: 15px;
    background-size: cover;
    background-position: center;
}

.pricing-feature-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-feature-text {
    font-weight: 300;
    color: #333333;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 28.8px;
}

/* レスポンシブデザイン対応 */
@media (max-width: 768px) {
    .pricing-banner-left {
        padding: 16px;
    }
    .pricing-banner {
        flex-direction: column;
    }
    .pricing-banner-text {
        font-size: 26px;
        line-height: 1;
        padding-bottom: 4px;
    }
    .pricing-table-wrapper {
        padding: 32px 8px 16px;
    }
    .pricing-banner-right {
        padding: 24px 8px;
    }
    .pricing-monthly-text {
        font-size: 26px;
        margin-bottom: 8px;
    }
    .pricing-price {
        font-size: 42px;
    }
}

.price-section{
    width: 1000px;
    margin: 50px auto;
    padding-top: 0;
    padding-bottom: 0;
}
.price-title{
    font-size: 32px;
    color: #2755A8;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

@media screen and (max-width:1000px){
    .price-section{
    width: 90%;
    margin: 30px auto;
}
.price-title{
    font-size: 20px;
    margin-bottom: 0;
}
.pricing-container {
    gap: 16px;
}
.pricing-card{
    width: 90%;
}
.pricing-banner-text{
    margin-bottom: 0;
}
.pricing-banner p{
    margin-bottom: 0;
}

}

/* Features Section (FAQ) */
.features-section {
    width: 100%;
    background-color: #f7f7f7;
    padding: 48px 16px;
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    color: #2755a8;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Noto Sans JP', Helvetica;
    margin-bottom: 48px;
}

.faq-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    position: relative;
}

.faq-question-container {
    display: flex;
    align-items: center;
    gap: 32px;
}

.faq-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.faq-question,
.faq-answer {
    flex: 1;
    background-image: url(https://www.kotegawa-law.com/wp-content/themes/houmu/assets/images/retirement-agency/ami.jpg);
    font-size: 20px;
    padding: 30px;
    border-radius: 20px;

}

.faq-trigger {
    width: 100%;
    border-radius: 20px;
    background-image: url('/ami-7.png');
    background-size: cover;
    background-position: 50% 50%;
    padding: 32px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: black;
    font-size: 20px;
    line-height: 1.5;
}

.faq-answer-container {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
}

.faq-answer-content {
    border-radius: 20px;
    background-image: url('/ami-7.png');
    background-size: cover;
    background-position: 50% 50%;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: black;
    font-size: 20px;
    line-height: 1.5;
}

.faq-bold {
    font-weight: bold;
    background: linear-gradient(rgba(0,0,0,0) 70%, #FCCF00 70%);
}

.faq-separator {
    height: 1px;
    background-color: #ccc;
    margin: 48px 0;
}

@media screen and (max-width:1000px){
    .features-title {
    font-size: 20px;
    margin-bottom: 24px;
}
.faq-icon {
    width: 80px;
    height: 80px;
}
.faq-question,
.faq-answer {
    font-size: 16px;
    padding: 15px;
    border-radius: 10px;
}
.faq-answer-content {
    border-radius: 10px;
    font-size: 16px;
}
.faq-answer-container {
    margin-top: 15px;
}
.faq-separator {
    margin: 0;
}
}

/* Statistics Section */
.statistics-section {
    width: 1000px;
    margin: 100px auto;
    padding-top: 0;
    padding-bottom: 0;
}

.statistics-container {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 16px;
}

.statistics-title {
    text-align: center;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: #2755a8;
    font-size: 32px;
    line-height: normal;
    margin-bottom: 32px;
}

.statistics-content {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: black;
    font-size: 20px;
    line-height: normal;
}
.statistics-content span{
    font-weight: bold;
    background: linear-gradient(rgba(0,0,0,0) 70%, #FCCF00 70%);
}

@media screen and (max-width:1000px){
    .statistics-section {
      width: 90%;
      margin: 80px auto;
    }
    .statistics-title {
    font-size: 20px;
    margin-bottom: 16px;
}
.statistics-content {
    font-size: 16px;
}
}

/* お問い合わせフォームのスタイル */
.last-cta-section .phone-contact {
    align-items: center;
}
.contact-form-container {
    max-width: 800px;
    width: 100%;
    margin: 30px 60px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #020953;
    text-align: center;
    margin-bottom: 10px;
}

.contact-form-description {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    color: #333333;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.required {
    color: #fccf00;
    margin-left: 5px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #fe6e0b;
    box-shadow: 0 0 0 2px rgba(254, 110, 11, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 14px;
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #fccf00;
}
.form-privacy label[for="privacy-1"] {
    display: flex;
    align-items: center;
}
.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.contact-submit-btn {
    background-color: #fccf00;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #e55d00;
    transform: translateY(-2px);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-form-title {
        font-size: 26px;
    }
    .contact-form-container {
        padding: 20px 15px;
        margin: 40px auto;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input, 
    .form-select, 
    .form-textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .contact-submit-btn {
        padding: 12px 40px;
        font-size: 16px;
        width: 100%;
    }
}

/* プライバシーポリシーボックスのスタイル */
.privacy-policy-section {
    margin: 0 auto;
    max-width: 500px;
    width: 90%;
}

.pp-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 0;
}

.pp-content {
    padding: 20px;
}

.pp-box h2 {
    text-align: left;
    font-size: 18px !important;
    font-weight: 700;
    margin: 20px 0 10px !important;
    color: #020953;
}

.pp-box h2.privacy-policy-title {
    font-size: 20px !important;
    font-weight: 700;
    color: #020953;
    margin-bottom: 15px;
    margin-top: 0;
}

.pp-box h3 {
    font-size: 16px !important;
    font-weight: 700;
    margin: 15px 0 8px;
    color: #333;
}

.pp-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.pp-box ul {
    margin: 10px 0 15px 20px;
    list-style: none;
}

.pp-box li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #333;
}

.pp-box a {
    text-decoration: underline;
    display: block;
    margin: 5px 0;
}

.pp-box a:hover {
    text-decoration: none;
}

/* スクロールバーのカスタマイズ（Webkit系ブラウザ用） */
.pp-box::-webkit-scrollbar {
    width: 8px;
}

.pp-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.pp-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.pp-box::-webkit-scrollbar-thumb:hover {
    background: #fccf00;
}

@media (max-width: 768px) {
    .pp-box {
        height: 200px;
    }
    
    .pp-box h2 {
        font-size: 16px !important;
    }
    
    .pp-box h3 {
        font-size: 15px !important;
    }
    
    .pp-box p, .pp-box li {
        font-size: 13px;
    }
}

#mw_wp_form_mw-wp-form-10634 .mwform-checkbox-field-text {
    color: #333333;
}

/* 確認画面で非表示 */
.mw_wp_form_confirm .privacy-policy-section, .mw_wp_form_confirm .form-privacy {
    display: none;
}

div#thanksMessage {
    color: #333333;
}

/* 送信後サンクスメッセージ */
.contact-form-description:has(~ 
.mw_wp_form_complete) {
	display: none;
}
.mw_wp_form_complete {
    margin-top: 40px;
}

/*footer*/

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px 10px;
    width: 100%;
    color: var(--text-color);
    background-color: #ffffff;
}
.footer .footer-logo {
    text-align: center;
    margin-bottom: 60px;
}
.footer .footer-logo img {
    max-width: 400px;
    width: 100%;
}
.footer-content {
    font-size: 16px;
    line-height: 26px;
}
.footer .area-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;

}
.footer .area-items {
    list-style: none;
}
footer .area-item {
    width: 28%;
}
footer .area-item a {
    color: var(--text-color);
}
.footer .copyright {
    font-size: 16px;
    text-align: center;
    color: black;
    line-height: 26px;
    white-space: nowrap;
    margin-top: 32px;
}
@media screen and (max-width:768px) {
    footer .area-item {
        width: 45%;
    }
}

@media screen and (max-width:480px) {
    footer .area-item {
        width: 100%;
    }
}
