@charset "utf-8";

/* 基本設定 */
html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    overflow-x: hidden;
    min-width: 370px;
}

/* 基本要素 */
img {
    width: 100%;
    height: auto;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

a {
    transition: .5s;
}

/* フォント */
.afacad {
    font-family: "Afacad", sans-serif;
}

/* ヘッダー */

/* ハンバーガーアイコン */
.hamburger {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: fit-content;
    height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 0.4rem;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hamburger span:nth-child(1) {
    width: 2.5rem;
}
.hamburger span:nth-child(2) {
    width: 2.1rem;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: #333;
}
.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -1px);
    background-color: #333;
    width: 2.5rem;
}

/* ナビゲーション */
.header_nav {
    position: fixed;
    top: 0;
  right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: right 0.3s ease;
    z-index: 1000;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.header_nav.active {
    right: 0;
}

/* メニュー */
.header_menu {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    font-size: 0;
}

.header_menu a {
    display: block;
    text-decoration: none;
    border-radius: 3rem;
    width: 22rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

/* ボタンデザイン */
.header_menu_line a {
    background: #fffb00;
    border: solid 1px #fffb00;
    color: #1B1C20;
    transition: .5s;
}

.header_menu_line a:hover {
    background: #1B1C20;
    border: solid 1px #06C755;
    color: #06C755;
    box-shadow: 0 0 0.5rem #06C755;
}

.header_menu_about a {
    background: #fff;
    border: solid 1px #1B1C20;
    color: #1B1C20;
}

.header_menu_about a:hover {
    background: #1B1C20;
    border: solid 1px #1B1C20;
    color: #fff;
    box-shadow: 0 0 0.5rem #1B1C20;
}



/* -----------footer-----------*/

/* -----------top-----------*/


/* ローディング画面 */
#top_main_visual{
    display: none;
}
#top_main_visual.show{
    display: block;
}
/* ローディング画面 end */

/* スキップボタン */
.skip-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0.9;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.skip-button::before {
    content: "→";
    font-size: 16px;
    transition: transform 0.3s ease;
}

.skip-button:hover {
    opacity:.5;
    transform: translateY(-2px);
}


.skip-button:active {
    transform: translateY(0);
}

.skip-button:active::before {
    transform: translateX(0);
}

.skip-button.hidden {
    display: none;
}

.skip-button::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../img/lemon-logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.skip-button:active::before {
    transform: translateY(1px) scale(0.98);
}

.skip-button.hidden::before {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.top_company_title_box_subtitle span.show {
    opacity: 1;
   }


.top_main_visual {
    position: fixed;
    background: #fff;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.top_main_visual svg {
    width: 90%;
    max-width: 30rem;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

.shape, .tunne_image {
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.shape {
    background: rgba(255, 255, 255, 0.5);
}

.tunne_image {
    width: 10rem;
    height: auto;
}

.top_company {
    padding: 20rem 6rem;
    border-radius: 0 15rem 0 0;
}

.top_company_title_box {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 7rem;
    max-height: 50rem;
    max-width: 1280px;
    margin: auto;
}

.top_company_title_box h1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0 0;
    box-sizing: border-box;
    transition: .5s;
}

.top_company_title_box img {
    flex: 1;
    object-fit: cover;
    height: 100%;
}

.top_company_title_box_title {
    font-size: 12rem;
    font-weight: bold;
    transition: .5s;
}

.top_company_title_box_subtitle {
    font-weight: bold;
    font-size: 4rem;
    color: #1B1C20;
    margin-top: auto;
    transition: .5s;
}

@media screen and (max-width: 1279px) {
    .top_company_title_box {
        gap: 6rem;
    }

    .top_company_title_box_title {
        font-size: 10rem;
    }

    .top_company_title_box_subtitle {
        font-size: 3.2rem;
    }
}

@media screen and (max-width: 1082px) {
    .top_company_title_box h1 {
        padding: 4rem 0 0;
    }

    .top_company_title_box {
        gap: 3rem;
    }

    .top_company_title_box_title {
        font-size: 8rem;
    }

    .top_company_title_box_subtitle {
        font-size: 2.8rem;
    }
}



/* タイプライター効果のスタイル */
.top_company_title_box_subtitle span {
    display: block;
    background: transparent; /* 初期状態は透明 */
    transition: background-color 0.1s; 
    opacity: 0;
    background: #fff;
}

.top_company_title_box_subtitle span.visible {
 opacity: 1;
}

.top_company h1 span {
    padding: 2rem 5rem;
    width: fit-content;
}

.top_company h1 span:first-child {
    margin: 4rem 0 3rem;
}

@media screen and (max-width: 414px) {
    .top_company h1 span {
        padding: 2rem;
    }
}


.top_company_title_box img {
    max-width: 50%;
    max-height: 50rem;
    display: block;
    object-fit: cover;
}

#top_work {
    position: relative;
}

.top_company_work {
    text-align: center;
    font-weight: bold;
    max-width: 80rem;
    margin:5rem auto 10rem;
    padding: 0 2rem;
}

.top_company_work p {
    line-height: 1.8;
    font-size: 2rem;
    margin-top: 2rem;
}

.top_company_work h2,
.top_member_h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    /* 他の共通のスタイル */
}

/* レスポンシブ対応 */
@media screen and (max-width: 959px) {

    .top_company_work h2,
    .top_member_h2 {
        font-size: 3rem;
        /* スマートフォン用のスタイル調整 */
    }
}

.top_member h2 svg {
    display: block;
    margin: auto;
}

.works_svg,
.member_svg {
    fill: #fff;
    max-width: 468px;
}

@media screen and (max-width: 639px) {
    .works_svg,
.member_svg {
    max-width: 250px;
}

.top_company_work p {
    font-size: 1.6rem;
}

}

/* SVGのパス間の隙間をなくす */
.works_svg path,
.works_svg polygon,
.member_svg path,
.member_svg polygon {
    vector-effect: non-scaling-stroke;
    stroke-width: 0;
    stroke: none;
}

/* 必要に応じて */
.works_svg,
.member_svg {
    fill-rule: evenodd;
}

.works_svg {
    fill: currentColor;
    width: 100%;
    height: 100%;
}

.top_web_content h2{
    padding: 0 2rem;
}

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

.top_web_box {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top_web_box:hover {
    opacity: 0.8; /* ホバー時の効果 */
}

.top_web_box img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 18px;
    box-shadow: rgba(255, 255, 255, 0.3) 5px 5px 6px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.top_web_swiper-wrapper {
    transition-timing-function: linear !important;
}

.top_character,
.top_graphic,
.top_member {
    padding: 5rem 2rem 0;
    /* max-width: 1000px; */
    /* margin: auto; */
}

.top_member{
    max-width: 1200px;
    margin: auto;
}


.character_image_box {
    display: flex;
    gap: 2rem;
    width: fit-content;
    transition: .5s;
    margin: auto;
}

.character_image_box img:nth-child(1),
.character_image_box img:nth-child(2),
.character_image_box img:nth-child(3) {
    max-width: 30%;
    margin: auto;

}




.graphic_image_box {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
    justify-content: center;
    width: fit-content;
    transition: .5s;
}

@media screen and (max-width: 640px) {
    .graphic_image_box {
        grid-template-columns: repeat(2, auto);
    }
}

.graphic_image_box img {
    justify-self: center;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}


.top_member_image {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
    justify-content: center;
    width: fit-content;
    margin: 10rem 0 0;
    font-weight: bold;
    font-size: 2rem;
}

.top_member_image_box {
    cursor: pointer;
    transition: .5s;
    height: fit-content;
    overflow: hidden;
}

.top_member_image_box:hover {
    opacity: 0.6;
}

.top_member_h2 {
    margin: 0 auto;
    max-width: 80rem;
}

.top_member_post {
    margin: 0.5rem 0;
}

.top_member_image_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(27, 28, 32, 0.9);
    z-index: 1000;
}

.top_member_image_modal.active {
    display: flex;
}

.top_member_image_modal_box {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px;
    transition: .5s;
}


.top_member_image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像のアスペクト比を保持しながら領域を埋める */
    object-position: center; /* 画像を中央に配置 */
}

.top_member_image_modal_box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: .5s;
}

.top_member_image_modal_specialty_field {
    margin-top: 20px;
}

.top_member_image_modal_postbox {
    margin-top: 10px;
}

/* スマートフォン用 */
@media screen and (max-width: 959px) {
    .top_member_image_modal_box {
        padding: 0 15px;
        max-width: 500px;
    }

    .top_member_image_modal_box img {
        max-height: 100vh;
    }
}

.modal_close_btn {
    position: absolute;
    top: 20px;
    right: 35px;
    width: 60px;
    height: 60px;

    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    display: block;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal_close_btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.modal_close_btn span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close_btn span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_close_btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.modal_close_btn:hover span {
    background-color: #fff;
}

@media screen and (max-width: 959px) {
    .modal_close_btn {
        width: 36px;
        height: 36px;
    }

    .modal_close_btn span {
        width: 20px;
    }
}

.top_member_image_modal_postbox {
    position: absolute;
    left: 5rem;
    top: 20%;
    font-size: 2rem;
    transition: .5s;
}

.top_member_image_modal_postbox p {
    margin-bottom: 0.5rem;
}

.top_member_image_modal_name {
    font-size: 3rem;
}

.top_member_image_modal_specialty_field {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2.4rem;
    font-weight: bold;
    position: absolute;
    right: 5rem;
    top: 15%;
    color: #1B1C20;
    transition: .5s;
}

.top_member_image_modal_specialty_field p {
    background: #fff;
    padding: 1rem;
    height: fit-content;
}

.top_member_image_modal_specialty_field p:first-child {
    margin-left: 1.5rem;
}

@media screen and (max-width: 959px) {
    .top_member_image_modal_specialty_field {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-size: 1.8rem;
        font-weight: bold;
        position: absolute;
        right: 5rem;
        top: 20%;
        color: #1B1C20;
    }
}

@media screen and (max-width: 414px) {

    .top_member_image_modal_postbox {
        position: absolute;
        left: 2rem;
        top: 15%;
        font-size: 1.5rem;
    }

    .top_member_image_modal_specialty_field {
        font-size: 1.2rem;
        top: 15%;
        right: 3rem;
    }
}

footer {
    background: #1B1C20;
    padding-top: 20rem;
}

.footer_bg {
    background: #fff;
    padding: 20rem 6rem 0;
    border-radius: 0 15rem 0 0;
    color: #1B1C20;
}

.footer_contact {
    text-decoration: none;
    display: block;
    background: #1B1C20;
    border: solid 1px #1B1C20;
    color: #fff;
    text-align: center;
    max-width: 90rem;
    margin: auto;
    padding: 3rem 0;
    transition: .5s;
}

.footer_contact:hover {
    background: #fff;
    border: solid 1px #1B1C20;
    color: #06C755;
}

.footer_contact strong {
    font-size: 10rem;
    font-weight: bold;
}

.footer_contact p {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 1rem;
}

.footer_contact p span {
    display: inline-block;
    width: 3.7rem;
    line-height: 3.7rem;
    background: #fff;
    color: #1B1C20;
    border-radius: 50%;
    margin-left: 1rem;
    transition: .5s;
}

.footer_contact:hover.footer_contact p span {
    background: #06C755;
    color: #fff;
}

.footer_emmlabo {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 5rem 0;
}

.footer_menu_all li {
    margin: 1rem 2rem;
}

.footer_menu_all a {
    color: #1B1C20;
    text-decoration: none;
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0 0;
    display: block;
}

.footer_menu_all a:hover {
    transform: scale(1.1);
}

.footer_menu_all a span {
    font-size: 2rem;
}

.footer_menu {
    width: fit-content;
    margin: auto;
}

.footer_menu li {
    display: inline-block;
}

.footer_menu1 li,
.footer_menu2 li {
    border-bottom: solid 1px #1B1C20;
    width: fit-content;
}

.footer_sns_box a {
    width: 3.5rem;
    height: 3.5rem;
}

.snsicon {
    fill: #1B1C20;
}

.line-in {
    fill: #fff;
}

.copyright {
    display: block;
    text-align: center;
    font-weight: bold;
    margin: 2.5rem 0 0.5rem;
}


/* about */

.about_all {
    background: #1B1C20;
    padding: 10rem 0 0;
}


.outline_all {
    position: relative;
}

#outline_svg {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    display: block;
}

#outline_svg path {
    fill: #fff;
}

.outline_content {
    color: #1B1C20;
    position: absolute;
    width: fit-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.outline_content h2 {
    font-size: 20rem;
    text-align: center;
    margin-bottom: 2rem;
}

.outline_table {
    border-collapse: separate;
    border-spacing: 0 2rem;
}

.outline_table td {
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 2rem;
    transition: .5s;
}


.gallery_content {
    margin-top: 20rem;
}

.gallery_content h2 {
    font-size: 20rem;
    font-weight: bold;
    text-align: center;
    margin: 30rem 0 15rem;
    color: #D9D9D9;
    transition: .5s;
}

@media screen and (max-width: 1064px) {

    .outline_table td {
        font-size: 1.7rem;
    }
}




@media screen and (max-width: 1024px) {
    .gallery_content h2 {
        font-size: 15rem;
        margin: 20rem 0 10rem;
    }
}

@media screen and (max-width: 767px) {
    .gallery_content h2 {
        font-size: 10rem;
        margin: 15rem 0 8rem;
    }

    #outline_svg {
        width: 100%;
        max-width: 600px;
        padding: 10rem 0;
        margin: auto;
        display: block;
    }

    .outline_content h2 {
        font-size: 5rem;
        margin-bottom: 1rem;
    }

    .outline_table {
        border-spacing: 0;
        margin: 0 auto;
        transition: .5s;
    }

    .outline_table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
        transition: .5s;
    }



    .gallery_images {
        height: 200px;
        /* スマホでの画像の高さを調整 */
    }
}

@media screen and (max-width: 959px) {

    .outline_content {
        max-width: 90%;
        padding: 5rem 1rem;
        background: #fff;
        border-radius: 5rem;
    }


    #outline_svg {
        width: 100%;
        max-width: 600px;
        padding: 10rem 0;
        margin: auto;
        display: block;
    }

    .outline_content h2 {
        font-size: 5rem;
        background: #fff;
        margin-bottom: 1rem;
        border-radius: 2rem;
        width: fit-content;
        margin: 1rem auto;
        padding: 1rem;
    }



    .outline_table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
        transition: .5s;
    }



    .gallery_content {
        margin-top: 10rem;
    }

    .gallery_images {
        height: 200px;
        /* スマホでの画像の高さを調整 */
    }
}

@media screen and (max-width: 639px) {
    .outline_table td {
        font-size: 1.4rem;
        padding: 0.5rem 0;
        transition: .5s;
        line-height: 1.5;
    }

}


/* スクロール無限 */

.scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__list--right {
    animation: infinity-scroll-right 80s infinite linear 0.5s both;
}


@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
}


.scroll-infinity__item {
    width: calc(100vw / 3);
}

.scroll-infinity__item>img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 640px) {
    .scroll-infinity__item>img {
        height: 20rem;
    }
}


/* about end */

.lemon_eye, .lemon_eye2 {
    fill: none;
    stroke: #000;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}

.lemon_eye_bg {
    fill: #fff;
}

.lemon_fill {
    fill: #000;
}

.lemon_all {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.lemon_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    /* コンテンツの最大幅を設定（必要に応じて調整） */
    padding: 0 20px;
    /* 左右の余白 */
    text-align: center;
    z-index: 2;
    /* 必要に応じてz-indexを調整 */
}

.falling_lemons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 998;
}

.falling_lemon {
    position: absolute;
    width: 100px;
    height: 100px;
    transform-origin: center center;
}

.falling_lemon svg {
    width: 100%;
    height: 100%;
}

.content_h2 {
    font-size: 6rem;
    margin: 5rem 0 4rem;
}


@media screen and (max-width: 959px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
    .top_company {
        padding: 7rem 4rem;
    }

    .top_company_title_box {
        gap: 4rem;
        display: block;
    }

    .top_company_title_box {
        max-height: initial;
    }

    .top_company_title_box_title {
        font-size: 8rem;
    }

    .top_company_title_box_subtitle {
        font-size: 2.8rem;
        padding: 0 0 3rem;
    }

    .top_company_title_box img {
        max-width: 100%;
        max-height: initial;
        width: 100%;
        height: auto;
    }

    .top_company_work h2,
    .top_member_h2 {
        font-size: 3rem;
        /* スマートフォン用のスタイル調整 */
    }

    .footer_contact strong {
        font-size: 6rem;
    }

    .lemon_content {
        padding: 0 15px;
        /* スマホでの余白を調整 */
    }

    .gallery_image_all {
        gap: 20px;
    }
}

/* モバイル */
@media screen and (max-width: 639px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
    .top_company {
        padding: 10rem 2rem;
        border-radius: 0 8rem 0 0;
    }

    .top_company_title_box {
        flex-direction: column;
        gap: 2rem;
        max-height: none;
    }



    #top_web {
        padding: 0 0 0 2rem;
    }

    #top_character,
    #top_graphic {
        padding: 2rem;
    }

    .top_member_image {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_contact strong {
        font-size: 4rem;
    }

    .footer_bg {
        padding: 10rem 2rem 0;
        border-radius: 0 8rem 0 0;
    }
}

/* 共通の背景色 */
.all_content,
.top_member_image_modal,
.header_menu_js .header_menu_about a,
.footer_contact {
    background: #1B1C20;
}

.privacy_all {
    background: #1B1C20;
    padding: 10rem 0 0;
}

/* プライバシーポリシー */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.privacy-policy h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-policy h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin: 40px 0 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.privacy-policy__section {
    margin-bottom: 30px;
}

.privacy-policy p {
    margin-bottom: 15px;
}
.privacy-policy p a{
   color: #fff;
}

.privacy-policy ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-policy li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.privacy-policy address {
    margin: 20px 0;
    border-radius: 5px;
}

.privacy-policy .email {
    font-family: monospace;
}

@media screen and (max-width: 768px) {
    .privacy-policy {
        padding: 20px 15px;
    }

    .privacy-policy h1 {
        font-size: 1.8em;
    }

    .privacy-policy h2 {
        font-size: 1.3em;
    }
}

/* プライバシーポリシー end */


/* 料金表 */

.price_all {
    background: #1B1C20;
    padding: 10rem 0 0;
}

.price_container {
    max-width: 1200px;
    margin: 15rem auto 0;
    padding: 2rem 2rem 10rem;
    border-radius: 20px;
}

.price_campaign {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.price_campaign_title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.price_campaign_note {
    font-size: 1.1rem;
    color: #666;
}

.price_section {
    margin-bottom: 4rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.price_section_title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #333;
    position: relative;
}

.price_section_title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #666;
}

.price_subsection {
    margin-bottom: 3rem;
}

.price_subsection_title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin: 10rem 0 1.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid #666;
    position: relative;
}

.price_table {
    display: grid;
    gap: 1.5rem;
}

.price_row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.price_row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.price_cell {
    padding: 0.5rem;
}

.price_cell.service {
    font-weight: bold;
    color: #333;
    line-height: 1.6;
}

.price_cell.amount {
    height: auto;
    min-height: fit-content;
    overflow: visible;
    line-height: 1.5;
    padding: 10px;
    color: #333333;
    background-color: #ffffff;
    font-weight: 500;
    text-shadow: none;
}

.price_cell.amount.important {
    color: #2c5282;
    font-weight: 600;
}

.price_cell.amount.special {
    color: #c53030;
}

.price_cell.amount.disabled {
    color: #718096;
}

.price_row:hover .price_cell.amount {
    background: yellow;
    border-color: #d0d0d0;
}

.price_cell.description {
    color: #666;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .price_container {
        padding: 1rem;
    }

    .price_tabs {
        flex-direction: column;
        align-items: center;
    }

    .price_tab {
        width: 100%;
        max-width: 300px;
    }

    .price_row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price_cell {
        padding: 0.5rem;
        border-bottom: 1px solid #e0e0e0;
    }

    .price_cell:last-child {
        border-bottom: none;
    }

    .price_cell.amount {
        text-align: left;
        background: #f5f5f5;
        padding: 0.8rem;
        border-radius: 8px;
        margin: 0.5rem 0;
    }

    .price_cell.description {
        padding-top: 1rem;
    }

    .price_section_title {
        font-size: 2rem;
        padding-bottom: 0.8rem;
    }

}

/* 料金表 end */

/* 料金表タブ */
.price_tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.price_tab {
    padding: 1rem 2rem;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

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

.price_tab.active {
    background: #333;
    color: #ffffff;
    border-color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price_tab_content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.price_tab_content.active {
    display: block;
}

.price_coming_soon {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .price_tabs {
        flex-direction: column;
        align-items: center;
    }

    .price_tab {
        width: 100%;
        max-width: 300px;
    }
}

/* 料金表タブ end */

.price_example_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.price_example_section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price_example_title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.price_example_table {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price_example_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price_example_cell {
    font-size: 1.4rem;
}

.price_example_cell.service {
    color: #333;
}

.price_example_cell.amount {
    color: #333;
    font-weight: bold;
}

.price_example_row.highlight {
    background: #f5f5f5;
    padding: 0.8rem;
    border-radius: 8px;
}

.price_example_row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .price_example_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price_example_section {
        padding: 1.5rem;
    }

    .price_example_title {
        font-size: 1.6rem;
    }

    .price_example_cell {
        font-size: 1.2rem;
    }
}

/* 保守プラン */
.price_maintenance_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.price_maintenance_section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price_maintenance_section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price_maintenance_title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.price_maintenance_amount {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.price_maintenance_description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price_maintenance_table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price_maintenance_row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f5f5f5;
    color: #333;
    border-radius: 8px;
}

.price_maintenance_cell {
    padding: 10px;
    font-size: 1.4rem;
}

.price_maintenance_cell:first-child {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .price_maintenance_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price_maintenance_section {
        padding: 1.5rem;
    }

    .price_maintenance_title {
        font-size: 1.6rem;
    }

    .price_maintenance_amount {
        font-size: 1.4rem;
    }

    .price_maintenance_description {
        font-size: 1.1rem;
    }

    .price_maintenance_cell {
        font-size: 1.4rem;
    }
}


