@charset "utf-8";

/* ローディング画面のスタイル */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.skip-loading-btn {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #644D41;
    border: 2px solid #644D41;
    padding: 1.2rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.skip-loading-btn:hover {
    background: #644D41;
    color: #fff;
    transform: translateY(-2px);
}


/* ローディング中はbodyのスクロールを無効化 */
body.loading {
    overflow: hidden;
    height: 100vh;
}

/* ローディング画面のフェードアウトアニメーション */
.loading-screen.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .skip-loading-btn {
        bottom: 3rem;
        right: 3rem;
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #644D41;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.ShipporiMincho {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #644D41;
}


.sp {
    display: block;
}

.pc {
    display: none;
}

.pc_only {
    display: none;
}

.site__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    display: flex;
    align-items: center;
}

.header__inner {
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.header__logo {
    position: relative;
    z-index: 1002;
}

.header__logo-link img {
    width: 5rem;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.site__header.scrolled .header__logo-link img {
    filter: brightness(0) invert(0) !important;
}

.site__header.menu-open .header__logo-link img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(8%) saturate(1000%) hue-rotate(15deg) brightness(96%) contrast(96%) !important;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1002;
}

.hamburger__line {
    display: block;
    width: 100%;
    height: 0.3rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

.site__header.scrolled .hamburger__line {
    background-color: #000 !important;
}

.site__header.menu-open .hamburger__line {
    background-color: #644D41 !important;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(1rem) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-1rem) rotate(-45deg);
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    backdrop-filter: blur(15px);
    transition: right 0.3s ease, background-color 0.3s ease;
    z-index: 1001;
}

.nav.active {
    right: 0;
}

.nav__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 4rem;
}

.nav__link {
    font-size: 1.8rem;
    color: #644D41;
    transition: color 0.3s ease;
    position: relative;
}

.site__header.scrolled .nav__link {
    color: #000;
}

.nav__link::after {
    display: none;
}

.page__visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.page__visual .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.page__visual .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.24);
    z-index: 1;
    pointer-events: none;
}

.page__visual .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.page__visual-text {
    position: absolute;
    top: 30%;
    left: 2rem;
    z-index: 10;
    color: #fff;
    letter-spacing: 7px;
}

.page__visual-text h1 {
    font-size: 2.5rem;
    line-height: 2;
    margin: 0;
}

.page__visual .swiper-pagination {
    bottom: 3rem !important;
}

.page__visual .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 0.5rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.page__visual .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

.contact__fixed {
    position: fixed;
    top: 50%;
    right: 0;
    background-color: #644D41;
    color: #fff;
    padding: 2rem 1rem;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInContact 2s ease-in-out 1s forwards;
}

/* 1つ目のボタン（CONTACT） */
.contact__fixed:nth-of-type(1) {
    transform: translateY(-120%);
}



@keyframes fadeInContact {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* CONTACTボタンのホバー効果 */
.contact__fixed:nth-of-type(1):hover {
    background-color: #52413A;
    transform: translateY(-120%) translateX(-0.5rem);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}



.page__heading {
    font-size: 3.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.7rem;
    text-align: center;
}

.page__heading span {
    display: block;
    font-size: 2rem;
}

.page__heading strong {
    color: rgba(0, 0, 0, 0.3);
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
}

.start {
    padding: 1rem;
    height: fit-content;
    background-image: url(../img/start_bg_img.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column-reverse;
    transition: .5s;
}

.start__content {
    width: 100%;
    margin: 5rem auto;
}

.start__text-container {
    line-height: 2;
    margin: 2rem auto;
    max-width: 350px;
}

.start__image img {
    max-width: 500px;
    margin: 2rem auto;
}

.our__business {
    margin: 20rem 0 5rem;
    width: 100%;
    overflow: hidden;
}

.business__card {
    position: relative;
    padding: 0 2rem;
}

.business__card-inner {
    margin: 5rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    max-width: 500px;
}

.business__bg {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.3;
    z-index: -1;
}


.business__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.business__content {
    padding: 3rem 2.5rem;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.business__title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.business__divider {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 2rem 0;
    width: 100%;
}

.business__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.business__list li {
    font-size: 1.4rem;
    color: #666;
    line-height: 2;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.business__list li:last-child {
    margin-bottom: 0;
}


.top__message {
    position: relative;
    margin: 0 0 10rem;
}

.top__message::before {
    content: "";
    background-color: #EEEFEE;
    width: 85%;
    height: 70%;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: -1;
}

.top__message-content {
    padding: 0 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.top__message-image {
    margin-bottom: 4rem;
}

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

.top__message .page__heading {
    margin-bottom: 3rem;
}


.top__message-text {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem;
}

.top__message-text strong {
    text-align: center;
    font-size: 2rem;
    display: block;
    margin-bottom: 2rem;
}

.top__message-text p {
    line-height: 2;
    color: #666;
    margin-bottom: 3rem;
}

.top__message-text p:last-child {
    margin-bottom: 0;
}

.top__message-text-name {
    font-size: 1.6rem;
    text-align: right;
    margin-top: 2rem;
}


.top__company {
    position: relative;
    background-image: url(../img/company_bg.webp);
    background-size: cover;
    background-position: bottom;
    padding: 8rem 2rem;
    color: #fff;
}


.top__company-content {
    max-width: 600px;
    margin: 0 auto;
}

.top__company-image {
        display: none;
    }

.top__company .page__heading {
    margin-bottom: 4rem;
    color: #fff;
}

.top__company .page__heading strong {
    color: #fff;
}

.top__company .page__heading span {
    color: #fff;
}

.top__company-text p {
    color: #fff;
    line-height: 2;
    max-width: 1100px;
    margin: auto;
}


.instagram__container {
    padding: 0 2rem;
    max-width: 1200px;
    margin: auto;
}

.instagram__link {
    display: inline-block;
    text-decoration: none;
    margin: 5rem auto;
    display: block;
    text-align: center;
    max-width: 20rem;
    transition: background-color 0.3s ease;
}

.instagram__link:hover {
    background-color: #EDEAE6;
}


/* フッター */
.footer__contact {
    position: relative;
    background-image: url(../img/contact_bg.webp);
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    color: #fff;
    text-align: center;
}

.footer__contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.footer__contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.footer__contact .page__heading {
    color: #fff;
    margin-bottom: 3rem;
}

.footer__contact .page__heading strong {
    color: #fff;
}

.footer__contact .page__heading span {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 100;
}

.footer__contact p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    color: #fff;
}

.footer__contact-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 600px;
    margin: auto;
}

.contact__button {
    display: block;
    margin: 0;
    background-color: #fff;
    color: #644D41;
    text-decoration: none;
    border-radius: 5rem;
    font-size: 2rem;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    line-height: 5rem;
    width: 100%;
    max-width: 30rem;
    box-sizing: border-box;
    margin: 0 auto;
}

.contact__button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}



@media screen and (min-width: 769px) {

    
    .contact__button {
        font-size: 2.4rem;
        line-height: 7rem;
        width: 34rem;
    }
}

.footer__info {
    background-color: #DDDBD6;
    padding: 4rem 2rem;
}

.footer__info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__company {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer__company-name {
    font-size: 1.8rem;
    color: #644D41;
    margin: 0;
}

.footer__social-icons {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto 0 50px;
}

.footer__instagram,
.footer__line {
    color: #644D41;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.footer__instagram:hover,
.footer__line:hover {
    opacity: 0.7;
}

.footer__instagram svg,
.footer__line svg {
    width: 24px;
    height: 24px;
}

.footer__address {
    margin-bottom: 3rem;
}

.footer__postal {
    font-size: 1.4rem;
    color: #644D41;
    margin: 0 0 0.5rem 0;
}

.footer__location-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer__location {
    font-size: 1.4rem;
    color: #644D41;
    margin: 0;
}

.footer__map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #644D41;
    text-decoration: none;
    font-size: 1.4rem;
    margin: 0 auto 0 50px;
}

.footer__map svg {
    width: 16px;
    height: 16px;
}

.footer__contact-info {
    margin-bottom: 10rem;
}

.footer__contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.footer__label {
    width: 5rem;
    font-size: 1.3rem;
    color: #644D41;
}

.footer__value {
    font-size: 1.3rem;
    color: #644D41;
}

.footer__menu {
    border-left: 1px solid #644D41;
    padding-left: 5rem;
}

.footer__menu-link {
    display: block;
    color: #644D41;
    text-decoration: none;
    font-size: 1.4rem;
    padding: 1rem 0;
}


/* service page */
.service__intro {
    padding: 8rem 2rem;
    text-align: center;
}

.service__intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service__intro .page__heading {
    margin-bottom: 4rem;
}

.service__intro-text {
    line-height: 2;
        font-size: 1.5rem;
    }

.service__intro-text p {
    margin-bottom: 2rem;
}


.service__list {
    padding: 6rem 2rem;
    margin-bottom: 20rem;
}

.service__list-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service__item {
    margin: 0 auto 6rem;
    position: relative;
    max-width: 600px;
}

.service__item:last-child {
    margin-bottom: 0;
}

.service__item-image {
    margin-bottom: 2rem;
}

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

.service__item-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.service__item-divider {
    border: none;
    height: 2px;
    background-color: #644D41;
    margin: 0 0 2rem 0;
    width: 100%;
}

.service__item-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service__item-text:last-child {
    margin-bottom: 0;
}

.service__item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service__item-list li {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 0;
}

.service__item-list li:last-child {
    margin-bottom: 0;
}

/* プライバシーポリシーページ */
.privacy__intro {
    padding: 8rem 2rem;
    text-align: center;
}

.privacy__intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy__intro .page__heading {
    margin-bottom: 2rem;
}

.privacy__content {
    padding: 0 2rem 8rem;
}

.privacy__content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.privacy__item {
    margin-bottom: 4rem;
}

.privacy__item:last-child {
    margin-bottom: 0;
}

.privacy__item-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #644D41;
}

.privacy__item-text {
    font-size: 1.5rem;
    line-height: 1.8;
}

/* お問い合わせフォームページ */
.contact__form-section {
    padding: 8rem 2rem;
    background-color: #F8F8F8;
}

.contact__form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact__form-container .page__heading {
    text-align: center;
    margin-bottom: 4rem;
}

.contact__form {
    background-color: #EEEEEE;
    padding: 3rem 2rem;
    border-radius: 0;
}

.contact__form-group {
    margin-bottom: 3rem;
}

.contact__label {
        display: block;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact__required {
    background-color: #8B7355;
    color: #fff;
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
    border-radius: 0.2rem;
    margin-left: 0.5rem;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    background-color: #fff;
    font-size: 1.4rem;
    box-sizing: border-box;
    border-radius: 0;
}

.contact__input:focus,
.contact__textarea:focus {
    outline: 2px solid #644D41;
}

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

.contact__checkbox-group {
    margin-bottom: 3rem;
}

.contact__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.contact__checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact__checkbox-text {
    font-size: 1.3rem;
    line-height: 1.6;
}

.contact__submit-group {
    text-align: center;
}

.contact__submit-btn {
    display: block;
    margin: auto;
      background-color: #8B7355;
    color: #fff;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.6rem;
    border-radius: 3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact__submit-btn:hover {
    background-color: #6B5940;
}

@media screen and (min-width: 769px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .nav {
        position: initial;
        width: auto;
        height: auto;
        background-color: transparent;
        backdrop-filter: none;
        transition: none;
        z-index: auto;
        margin-right: 6rem;
    }

    .nav__menu {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        height: auto;
        gap: 3rem;
    }

    .nav__link {
        color: #fff;
    }

    .site__header.scrolled .nav__link {
        color: #000;
    }

    .nav__link::after {
        display: block;
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 0;
        width: 0;
        height: 0.2rem;
        background-color: #fff;
        transition: width 0.3s ease, background-color 0.3s ease;
    }

    .nav__link:hover::after {
        width: 100%;
    }

    .site__header.scrolled .nav__link::after {
        background-color: #000;
    }

    .page__visual-text {
        left: 10%;
    }

    .page__visual-text h1,
    .page__visual-text p {
        font-size: 3rem;
    }

    .start {
        display: flex;
        flex-direction: initial;
        height: 30%;
        max-height: 65rem;
    }

    .start__content {
        width: 50%;
        margin: auto;
    }

    .start__image {
        width: 50%;
    }

    .start__image img {
        max-width: 100%;
    }

    .top__message {
        padding: 8rem 0;
    }

    .top__message-content {
        max-width: 85%;
        display: flex;
        align-items: flex-start;
        padding: 0;
        margin: 0 0 0 auto;
    }



    .top__message-text {
        padding: 4rem;
    }

    .top__message-text strong {
        font-size: 3rem;
    }

    .top__message-text p {
        line-height: 2.2;
        font-size: 1.6rem;
    }

    .top__company {
        padding: 10rem 0;
        background-position: left center;
    }

    .top__company-content {
        max-width: 1200px;
        display: flex;
        align-items: center;
        gap: 8rem;
        padding: 0 4rem;
        text-align: left;
    }

    .top__company-image {
        display: block;
        flex: 1;
    }


    .top__company .page__heading {
        margin-bottom: 4rem;
    }




}






@media screen and (min-width: 1025px) {

    body {
        font-size: 1.8rem;
    }

    .pc_only {
        display: block;
    }


    .page__visual-text h1 {
        font-size: 4rem;
    }

    .business__card-inner {
        display: flex;
        margin: 12rem auto;
        height: initial;
        max-width: 1300px;
    }

    .business__image {
        width: 100%;
        height: initial;
        max-width: 700px;
    }

    .business__content {
        padding: 3rem 2.5rem;
        text-align: center;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-left: -50px;
        height: fit-content;
        margin: auto 0 auto -70px;
        width: 53rem;
    }

    .business__list {
        max-width: 400px;
        margin: auto;
    }

    .business__list li {
        font-size: 1.8rem;
    }

    .business__card:nth-child(even) .business__card-inner {
        flex-direction: row-reverse;
    }

    .business__card:nth-child(even) .business__content {
        margin: auto -70px auto 0;
        position: inherit;
    }

    .business__bg {
        bottom: 40px;
        left: 0;
        margin: auto;
        height: fit-content;
    }

    .top__message::before {
        content: "";
        background-color: #EEEFEE;
        width: 80%;
        height: 90%;
        position: absolute;
        top: 60px;
        left: initial;
        right: 0;
        z-index: -1;
    }

    /* PC版サービス一覧 */
    .service__item {
        display: flex;
        align-items: stretch;
        gap: .5rem;
        margin-bottom: 15rem;
        max-width: 1400px;
    }



    .service__item-image {
        flex: 1.5;
        margin-bottom: 0;
    }

    .service__item-image img {
        margin-bottom: 0;
        vertical-align: top;
        height: 410px;
        object-fit: cover;
        width: 100%;
    }

    .service__item-content {
        flex: 1;
        height: 410px;
    }

    .service__item-title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
        margin-top: 0;
        line-height: 1.2;
    }

    .service__item-divider {
        width: 90%;
        margin: 0 auto 3rem;
    }

    .service__item-list {
        margin-bottom: 3rem;
        padding: 0 3rem;
    }

    .service__item-list li {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .service__item-sub-images {
        display: flex;
        gap: 1rem;
        position: absolute;
        bottom: 0;
    }

    .service__item-sub-images img {
        width: calc(50% - 0.5rem);
        height: auto;
        max-height: 135px;
        object-fit: cover;
    }

    /* 偶数番目の項目は左右を逆に */
    .service__item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .footer__info-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer__left {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .footer__company {
        margin: 0 auto 0 50px;
        margin-bottom: 2rem;
    }

    .footer__address {
        margin-bottom: 2rem;
    }

    .footer__contact-info {
        margin-bottom: 0;
    }

    .footer__menu {
        padding-left: 3rem;
        padding-top: 0;
        margin-top: 0;
    }

    .footer__menu-link {
        padding: 0.8rem 0;
    }

    /* PC版プライバシーポリシー */
    .privacy__intro {
        padding: 10rem 2rem;
    }

    .privacy__content {
        padding: 0 2rem 10rem;
    }

    .privacy__content-inner {
        max-width: 1000px;
    }

    .privacy__item-title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .privacy__item-text {
        font-size: 1.6rem;
    }

    /* PC版お問い合わせフォーム */
    .contact__form-section {
        padding: 10rem 2rem;
    }

    .contact__form-container {
        max-width: 800px;
    }

    .contact__form {
        padding: 4rem 5rem;
    }

    .contact__form-group {
        margin-bottom: 4rem;
    }

    .contact__label {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .contact__input,
    .contact__textarea {
        padding: 1.5rem;
        font-size: 1.6rem;
    }

    .contact__checkbox-text {
        font-size: 1.5rem;
    }

    .contact__submit-btn {
        padding: 2rem 5rem;
        font-size: 1.8rem;
    }
}


.grecaptcha-badge{
    display: none;
}