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

body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
}

.grecaptcha-badge {
    display: none !important;
}


/*アニメーション設定
---------------------------------------------------------------------------- */
.anim {
  visibility: hidden;
}

.anim-off {
  visibility: visible;
}

.animated {
  animation-fill-mode: both;
  animation-duration: 0.4s;
  visibility: visible !important;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.header.is-hidden {
    transform: translateY(-100%);
}

.header__inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.header__logo {
    display: block;
    padding-left: 40px;
    text-decoration: none;
}

.header__logo-image {
    height: 50px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
}

.header__nav-link {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: #8b9a3c;
}

.header__cta {
    display: flex;
    align-items: center;
    background-color: #e85d3c;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    height: 110px;
    transition: background-color 0.3s ease;
    line-height: 1.5;
    text-align: center;
}

.header__cta:hover {
    background-color: #d14d2c;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header__mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 0 40px;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.header__mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header__mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.header__mobile-link {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.header__mobile-link:hover {
    color: #8b9a3c;
    border-color: #8b9a3c;
}

.header__hamburger {
    position: relative;
    z-index: 1000;
}

@media (max-width: 1200px) {

    .header__inner {
        height: 90px;
    }

    .header__logo {
        width: 30%;
        padding-left: 20px;
    }

    .header__logo-image {
        max-width: 100%;
        height: auto;
    }

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
        width: 70%;
    }

    .header__nav-list {
        gap: 25px;
    }

    .header__nav-link {
        font-size: 16px;
    }

    .header__cta {
        width: 130px;
        padding: 0;
        font-size: 16px;
        height: 90px;
        text-align: center;
        justify-content: center;
    }

}

@media (max-width: 1024px) {

    .header__inner {
        height: 70px;
    }

    .header__nav {
        gap: 20px;
    }

    .header__nav-list {
        width: 70%;
        gap: 5%;
        line-height: 1.2;
        word-break: keep-all;
        justify-content: flex-end;
    }

    .header__nav-link {
        font-size: 14px;
    }

    .header__cta {
        font-size: 14px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .header__inner {
        height: 60px;
    }

    .header__nav{
        width: 30%;
        gap: 13px;
    }

    .header__logo{
        width: 65%;
        display: block;
        padding-left: 10px;
    }

    .header__logo-image {
        height: 36px;
    }

    .header__nav-list {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .header__mobile-menu {
        padding: 40px 30px;
        text-align: center;
    }

    .header__cta {
        font-size: 10px;
        padding: 8px 0;
        width: 60px;
        height: 60px;
        letter-spacing: 0;
    }
}


/* Footer */
.footer {
    background-color: #fff;
}

.footer__contact-bar {
    background-color: #7D9626;
    color: #fff;
    padding: 40px 0;
}

.footer__contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.footer__contact-inner > div{
    width: 33.33%;
    height: 100%;
    text-align: center;
}

.footer__contact-inner > div:not(:last-child){
    position: relative;
    &::after{
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 1px;
        height: 80px;
        background-color: rgba(255,255,255,.5);
        transform: translateY(-50%);
    }
}

.footer__contact-text {
    font-size: 16px;
    line-height: 1.6;
}

.footer__contact-info {
    display: flex;
    gap: 0;
    align-items: center;
    flex-direction: column;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__contact-item a{
    color: #fff;
    text-decoration: none;
}

.footer__contact-label {
    font-size: 14px;
    font-weight: 600;
}

.footer__contact-number {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}

.footer__contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.footer__contact-link:hover {
    opacity: 0.8;
}

.footer__contact-link::after {
    content: '→';
    margin-left: 8px;
}

.footer__main {
    padding: 60px 40px 40px;
    background-color: #fafafa;
}

.footer__main-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer__logo {
    display: block;
    margin: 0 auto 40px;
    max-width: 400px;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__nav {
    margin-bottom: 50px;
}

.footer__nav-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
}

.footer__nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: #8b9a3c;
}

.footer__banner {
    display: block;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    & a:hover img{
        opacity: 0.7;
    }
    & img{
        max-width: 350px;
    }
}

.footer__banner img {
    width: auto;
    height: auto;
}

.footer__copyright {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer__contact-bar {
        padding: 20px 30px;
    }

    .footer__contact-number {
        font-size: 24px;
    }

    .footer__main {
        padding: 50px 30px 30px;
    }

    .footer__nav-list {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer__contact-bar {
        padding: 40px 20px;
    }

    .footer__contact-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer__contact-info {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .footer__contact-number {
        font-size: 30px;
    }

    .footer__contact-inner > div{
        width: 100%;
    }

    .footer__contact-inner > div:not(:last-child) {
        &::after {
            display: none;
        }
    }

    .footer__contact-text{
        font-size: 20px;
    }

    .footer__main {
        padding: 40px 20px 30px;
    }

    .footer__logo {
        max-width: 320px;
    }

    .footer__nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer__banner {
        max-width: 100%;
    }

    .footer__copyright {
        font-size: 12px;
    }

    .footer__contact-link{
        display: block;
        padding: 20px 0;
        border: 1px solid #fff;
    }
}

div#topcontrol {
    z-index: 900;
}

div#topcontrol img {
    max-width: 85px;
}

.page-hero {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.page-hero__bg-layer {
    position: absolute;
    left: 0;
    top: 60px;
    right: 0;
    bottom: 0;
    background-color: #E7EBD6;
}

.page-hero__image {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 130px);
    height: 100%;
    object-fit: cover;
}

.page-hero__title-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 80px 30px 0;
    max-width: 600px;
    z-index: 10;
}

.page-hero__title {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    padding-left: 60px;
}

.breadcrumb {
    background-color: #E7EBD6;
    padding: 20px 60px;
}

.breadcrumb__list {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb__item::after {
    content: '>';
    color: #999;
}

.breadcrumb__item:last-child::after {
    content: '';
}

.breadcrumb__link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__link:hover {
    color: #8b9a3c;
}

.breadcrumb__current {
    color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-hero {
        height: 350px;
    }

    .page-hero__bg-layer {
        top: 50px;
    }

    .page-hero__image {
        width: calc(100% - 80px);
    }

    .page-hero__title-wrapper {
        padding: 40px 60px 40px 0;
        max-width: 500px;
    }

    .page-hero__title {
        font-size: 38px;
        padding-left: 40px;
    }

    .breadcrumb {
        padding: 15px 40px;
    }
}

@media (max-width: 768px) {
    
    div#topcontrol img {
        max-width: 65px;
    }

    .page-hero {
        height: 230px;
    }

    .page-hero__bg-layer {
        top: 40px;
    }

    .page-hero__image {
        width: calc(100% - 20px);
    }

    .page-hero__title-wrapper {
        padding: 20px 40px 20px 0;
        max-width: 80%;
    }

    .page-hero__title {
        font-size: 28px;
        padding-left: 20px;
    }

    .breadcrumb {
        padding: 15px 20px;
    }

    .breadcrumb__list {
        font-size: 12px;
        gap: 10px;
    }

    .breadcrumb__item {
        gap: 10px;
    }
}

.section-title-block {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-block__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: 0.2em;
    color: #8b9a3c;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title-block__title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
}

.section-title-block__description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {

    .section-title-block__title {
        font-size: 38px;
    }

}

@media (max-width: 768px) {

    .section-title-block {
        margin-bottom: 40px;
    }

    .section-title-block__title {
        font-size: 34px;
    }

    .section-title-block__subtitle {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .section-title-block__description {
        font-size: 16px;
        margin-top: 20px;
        padding: 0 20px;
        word-break: auto-phrase;
    }

}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: auto;
}

.splash-screen.is-hiding {
    opacity: 0;
    pointer-events: none;
}

.splash-screen__content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-screen__logo {
    max-width: 800px;
    width: 100%;
    height: auto;
    animation: splashLogoZoomIn 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes splashLogoZoomIn {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .splash-screen__logo {
        max-width: 450px;
        width: 85%;
    }
}