/* Import Noto Sans JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
    --gap: 24px;
    --pad: 25vw;
    --snap-threshold: 0.2;
}

.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

/* reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
}

.call-to-action-container {
    display: flex;
    justify-content: center;
    background: linear-gradient(132.46deg, #FFB798 2.48%, #FFE3C7 86.31%);
    padding: 20px 0;
}

.call-to-action {
    display: flex;
    column-gap: 8px;
}

.call-to-action-text {
    font-size: 32px;
    font-weight: 900;
    color: #9D411C;
    display: flex;
    align-items: center;
}

.call-to-action-image-container {
    display: flex;
    align-items: center;
    max-width: 275px;
    width: 100%;
}

.call-to-action-image {
    width: 100%;
    height: auto;
}

/* Start Header CSS */
header {
    background-color: #FFFFFF;
    display: flex;
    padding: 10px 40px 10px 40px;
    justify-content: space-between;
}

.header-left {
    display: flex;
    column-gap: 24px;
}

.header-logo {
    display: flex;
    max-width: 78px;
    align-items: center;
}

.header-logo-image {
    width: 100%;
    height: auto;
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 4px;
}

.header-text-title {
    font-size: 24px;
    font-weight: 900;
    color: #BD4595;
}

.header-text-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #636363;
}

.header-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 78px;
    width: 100%;
}

.header-phone-icon img {
    width: 100%;
    height: auto;
}

.header-right {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.header-contact {
    display: flex;
    column-gap: 16px;
}

.header-phone {
    display: flex;
    flex-direction: column;
}

.header-phone-number-top {
    display: flex;
    column-gap: 8px;
}

.header-phone-icon {
    max-width: 32px;
    width: 100%;
}

.header-phone-icon img {
    width: 100%;
    height: auto;
}

.header-phone-number {
    display: flex;
}

.header-phone-number-text {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.header-phone-number-bottom {
    display: flex;
    justify-content: flex-end;
}

.header-phone-text {
    font-size: 14px;
    font-weight: 400;
    color: #636363;
}

.header-mail-button {
    display: flex;
    align-items: center;
    background-color: #BD4595;
    column-gap: 8px;
    padding: 16px 24px;
    border-radius: 90px;
}

.header-mail-icon {
    max-width: 32px;
    width: 100%;
    display: flex;
    align-items: center;
}

.header-mail-icon img {
    width: 100%;
    height: auto;
}

.header-mail-text {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.header-line-button {
    display: flex;
    align-items: center;
    background: linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%);
    column-gap: 8px;
    padding: 16px 24px;
    border-radius: 90px;
}

.header-line-icon {
    max-width: 32px;
    width: 100%;
    display: flex;
    align-items: center;
}

.header-line-icon img {
    width: 100%;
    height: auto;
}

.header-line-text {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.header-qr {
    display: flex;
    column-gap: 16px;
}

.header-qr-image {
    max-width: 120px;
    width: 100%;
}

.header-qr-image img {
    width: 100%;
    height: auto;
}

.header-qr-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 4px;
}

.header-qr-title {
    font-size: 24px;
    font-weight: 900;
    color: #FF732C;
}

.header-qr-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
}

/* End Header CSS */

/* Hero Banner CSS */
.hero-banner {
    width: 100%;
    height: 400px;
    background-image: url('../images/location-herobanner-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0 0 0;
}

.hero-banner-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.hero-banner__breadcrumb {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.hero-banner__breadcrumb-separator {
    display: flex;
    align-items: center;
}

.hero-banner__breadcrumb-current {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
}

.hero-banner__breadcrumb-home-link {
    display: flex;
    align-items: center;
}

.hero-banner__title-container {
    margin: 12px 0 0 0;
}

.hero-banner__title-container {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.hero-banner__title {
    font-size: 56px;
    font-weight: 900;
    color: #FFFFFF;
    max-width: 1000px;
    margin-top: 12px;
}

/* End Hero Banner CSS */

/* Start Navigation CSS */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    /* border-top linear gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%); */
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%) 1;
    background-color: #FFFFFF;
}

.navigation-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 12px 25px;
}

.navigation-text {
    color: #515151;
    font-size: 20px;
    font-weight: 500;
}

.nav-separator-container {
    display: flex;
    align-items: center;
}

.nav-separator {
    width: 1px;
    background: linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%);
    height: 39px;
}

/* End Navigation CSS */

/* Reasons for Infidelity Consultations Section */
.reasons-infidelity-consultations {
    padding: 40px 0 40px 0;
}

.reasons-infidelity-consultations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reasons-infidelity-consultations-title {
    font-size: 48px;
    font-weight: 900;
    color: #1C1C1C;
    margin-bottom: 24px;
}

.reasons-infidelity-consultations-list {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

/* 1 item */
.reasons-infidelity-consultations-list:has(> :nth-child(1):last-child) {
  grid-template-columns: 1fr;
}

/* 2 items */
.reasons-infidelity-consultations-list:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.reasons-infidelity-consultations-item {
    flex: 1;
    padding: 32px;
    min-height: 380px;
    border-radius: 16px;
    background: linear-gradient(132.46deg, #FFB798 2.48%, #FFE3C7 86.31%);

}

.reasons-infidelity-consultations-item.even {
    background: linear-gradient(133.67deg, #FFA2A8 2.54%, #FEDBDB 96.77%);

}

.reasons-infidelity-consultations-item-number {
    font-size: 80px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 4px #fff;
    line-height: 1;
    margin-bottom: 16px;
}

.reasons-infidelity-consultations-item-text {
    font-size: 24px;
    font-weight: 500;
}

/* End Reasons for Infidelity Consultations Section */


/* Infidelity Trends by Station Section */
.infidelity-trends-by-station {
    padding: 60px 0 0 0;
    background-color: #FCFAEF;
}

.infidelity-trends-by-station-container {
    max-width: 1200px;
    margin: 0 auto;
}

.infidelity-trends-by-station-title {
    font-size: 48px;
    font-weight: 900;
    color: #1C1C1C;
    margin-bottom: 10px;
}

.infidelity-trends-by-station-description-text {
    font-size: 20px;
    font-weight: 500;
    color: #515151;
    margin-bottom: 32px;
}

.infidelity-trends-by-station-list {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.infidelity-trends-by-station-item {
    display: flex;
    column-gap: 40px;
    padding: 24px 32px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.infidelity-trends-by-station-item-caret-icon {
    max-width: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.infidelity-trends-by-station-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    justify-content: center;
}

.infidelity-trends-by-station-item-title {
    font-size: 32px;
    font-weight: 700;
    color: #1C1C1C;
}

.infidelity-trends-by-station-item-line {
    display: flex;
    column-gap: 20px;
}

.infidelity-trends-by-station-item-text {
    font-size: 20px;
    font-weight: 400;
    color: #222222;
    flex: 1;
}

.infidelity-trends-by-station-item-content {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.infidelity-trends-by-station-item-ul {
    list-style-position: inside;
}

.infidelity-trends-by-station-item-ul-li::marker {
    font-size: 16px;
}
/* End Infidelity Trends by Station Section */

/* Investigation Cases Section */
.investigation-cases {
    padding: 70px 0 0 0;
    background-image: url('../images/investigation-cases-bg.png');
    background-repeat: no-repeat;
    background-color: #FCFAEF;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.investigation-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.investigation-cases-title {
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 24px;
    max-width: 673px;
}

.investigation-cases-description {
    font-size: 24px;
    font-weight: 500;
    color: #F9E7A8;
    margin-bottom: 24px;
    max-width: 673px;
}

.investigation-cases-content {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 673px;
}
/* End Investigation Cases Section */

/* FAQ Section */
.faq-section {
    padding: 60px 0 0 0;
    background-color: #FFFFFF;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    column-gap: 60px;
}

.faq-header {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 28px;
}

.faq-content {
    max-width: 847px;
    width: 100%;
}

.faq-title {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
}

.faq-image {
    max-width: 271px;
    width: 100%;
}

.faq-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.faq-content {
    display: flex;
    flex-direction: column;
}

.faq-item {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    border-top: 1px solid #EDEDED;
}

.faq-item:first-child {
    border-top: none;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    column-gap: 24px;
}

.faq-question-icon {
    display: flex;
    align-items: center;
}

.faq-icon__minus {
    display: none;
}

.faq-question-text {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}

.faq-answer {
    font-size: 16px;
    font-weight: 400;
    padding: 24px 0 0 0;
    display: none;
}

.faq-item.active .faq-question {
    padding-bottom: 24px;
    border-bottom: 1px solid #EDEDED;
}

.faq-item.active {
    border-radius: 24px;
    background-color: #FCFAEF;
    position: relative;
    box-shadow: 0 4px 0 0 transparent;
    background-image: linear-gradient(#FCFAEF, #FCFAEF), linear-gradient(155.05deg, #EE5770 20.99%, #FF6D30 88.44%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    border-top: transparent;
    border-left: transparent;
    border-right: transparent;
}

.faq-item.active::before {
    display: none;
}

.faq-item.active .faq-icon__plus {
    display: none;
}

.faq-item.active .faq-icon__minus {
    display: block;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item:last-child {
    border-bottom: none;
}
/* End FAQ Section */

/* Service Info and Contact Section */
.service-info-n-contact {
    padding-bottom: 60px;
}

.service-info-n-contact-section {
    padding: 60px 60px 0 60px;
}

.service-info-n-contact-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-image: url('../images/service-info-n-contact-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 567px;
    border-radius: 40px;
    background-position: center;
    overflow: hidden;
    padding-bottom: 64px;
}

.service-info-n-contact-phone-icon {
    max-width: 48px;
    width: 100%;
    display: flex;
    align-items: center;
}

.service-info-n-contact-phone-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-info-n-contact-phone {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.service-info-n-contact-phone-number {
    font-size: 40px;
    font-weight: 900;
    /* color linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%); */
    background: linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.service-info-n-contact-phone {
    padding: 20px 84px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    width: fit-content;
    background-color: #FFF4CA;
}

.service-info-n-contact-header {
    margin: 24px 0 0 0;
    font-size: 56px;
    font-weight: 900;
    color: #FFFFFF;
    max-width: 871px;
}

.service-info-n-contact-wrapper {
    max-width: 1255px;
    margin: 0 auto;
    width: 100%;
}

.service-info-n-contact-location {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 10px 0 0 0;
    max-width: 871px;
}

.service-info-n-contact-subheader {
    max-width: 871px;
    font-size: 24px;
    font-weight: 500;
    color: #F9E7A8;
    margin: 24px 0 0 0;
}

.service-and-contact-info-button-container {
    margin: 24px 0 0 0;
    max-width: 871px;
    display: flex;
    column-gap: 20px;
}

.service-info-n-contact-button {
    display: flex;
    align-items: center;
    padding: 17px 24px;
    border-radius: 90px;
    background-color: #FFFFFF;
    column-gap: 8px;
    width: fit-content;
    font-size: 20px;
    font-weight: 500;
    /* color linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%); */
    background: linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.service-info-n-contact-button-icon {
    display: flex;
    align-items: center;
}

.service-info-n-contact-button-line {
    display: flex;
    align-items: center;
    padding: 17px 24px;
    border-radius: 90px;
    background-color: #BD4595;
    column-gap: 8px;
    width: fit-content;
    font-size: 20px;
    font-weight: 500;
    background: linear-gradient(180deg, #ECE9E6 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.service-info-n-contact-button-line-icon {
    display: flex;
    align-items: center;
}

.service-info-n-contact-button-wrapper {
    background-color: #FFFFFF;
    border-radius: 90px;
    margin-top: 16px;
}

.service-info-n-contact-button-line-wrapper {
    background-color: #BD4595;
    border-radius: 90px;
    margin-top: 16px;
}

/* End Service Info and Contact Section */

/* Footer CSS */
.footer-top-wrapper {
    padding: 40px 0 24px 0;
    background-color: #272422;
}

.footer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    column-gap: 24px;
}

.footer-logo {
    max-width: 589px;
    width: 100%;
    flex: 1;
}

.footer-links-container {
    display: flex;
    flex: 1;
}

.footer-links {
    max-width: 281px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.footer-link {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
}

.footer-logo-text {
    /* color background: linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%); */
    background: linear-gradient(110.92deg, #EE5770 38.61%, #FF7840 85.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 24px;
    font-weight: 900;
}

.footer-location {
    /* color background: linear-gradient(298.03deg, #EFD161 14.69%, #49C84B 92.04%); */
    background: linear-gradient(298.03deg, #EFD161 14.69%, #49C84B 92.04%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 24px;
    font-weight: 700;
    margin: 4px 0 0 0;
}

.footer-address {
    display: flex;
    column-gap: 10px;
    margin-top: 18px;
}

.footer-address-label {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.footer-address-text {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-left: 10px;
}

.footer-phone {
    display: flex;
    column-gap: 10px;
    margin-top: 16px;
}

.footer-phone-label {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.footer-phone-text {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-left: 10px;
}

.footer-hours {
    display: flex;
    column-gap: 10px;
    margin-top: 16px;
}

.footer-hours-label {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.footer-hours-text {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-left: 10px;
}

.footer-bottom-wrapper {
    padding: 24px 0;
    background-color: #201E1D;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer-bottom-header {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF
}

.footer-bottom-links {
    display: flex;
    column-gap: 8px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
}

.footer-bottom-separator {
    color: #FFFFFF;
}
/* End Footer CSS */
