> ## Documentation Index
> Fetch the complete documentation index at: https://docs.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 入門ガイド: Boxユーザー向けの基礎

export const CarouselItem = ({children}) => {
  return <>{children}</>;
};

export const CarouselCard = ({img, video, title, link}) => {
  const [isPlaying, setIsPlaying] = useState(false);
  const Wrapper = link && !video ? "a" : "div";
  const wrapperProps = link && !video ? {
    href: link,
    rel: "noreferrer",
    target: "_blank"
  } : {};
  const autoplayVideo = (() => {
    if (!video) {
      return "";
    }
    try {
      const url = new URL(video);
      url.searchParams.set("autoplay", "true");
      return url.href;
    } catch {
      return video;
    }
  })();
  return <Wrapper className="carousel-card-link block group no-underline !text-inherit" {...wrapperProps}>
      <div className="bg-white dark:bg-[#0b0b0b] rounded-2xl overflow-hidden border border-gray-200 dark:border-gray-800 shadow-sm transition-shadow hover:shadow-md h-[280px] flex flex-col">
        <div className="h-[160px] w-full bg-gray-100 dark:bg-gray-800 relative overflow-hidden rounded-t-2xl rounded-b-none">
          {video && (isPlaying || !img) ? <iframe src={isPlaying ? autoplayVideo : video} title={title} className="w-full h-full" allowFullScreen allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" /> : img ? video ? <button type="button" aria-label={`Play ${title}`} className="carousel-card-playgroup relative h-full w-full cursor-pointer" onClick={() => setIsPlaying(true)}>
                <img src={img} alt={title} className="w-full h-full object-cover" />
                <span className="absolute inset-0 bg-black/20 transition-colors group-hover:bg-black/30" aria-hidden="true" />
                <span className="absolute inset-0 flex items-center justify-center" aria-hidden="true">
                  <span className="flex h-14 w-14 items-center justify-center rounded-full bg-white/95 text-[#0061D5] text-xl shadow-lg">
                    ▶
                  </span>
                </span>
              </button> : <img src={img} alt={title} style={{
    pointerEvents: "none"
  }} className="w-full h-full object-cover" /> : null}
        </div>
        <div className="flex flex-col flex-1">
          <h3 className="px-6 pt-3 text-lg text-[20px] font-bold text-gray-900 dark:text-white line-clamp-3">{title}</h3>
        </div>
      </div>
    </Wrapper>;
};

export const Carousel = ({children, title = "Education", columns = 3}) => {
  const items = Array.isArray(children) ? children : [children];
  const tabs = items.map(child => ({
    title: child.props.title,
    icon: child.props.icon,
    content: child.props.children,
    allHref: child.props.allHref,
    allText: child.props.allText || "See all courses"
  }));
  const gridClassName = columns <= 1 ? "grid grid-cols-1 gap-x-5 gap-y-8" : columns === 2 ? "grid grid-cols-1 sm:grid-cols-2 gap-x-5 gap-y-8" : "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-x-5 gap-y-8";
  const [activeTab, setActiveTab] = useState(0);
  const tabsRef = useRef([]);
  const [indicatorStyle, setIndicatorStyle] = useState({
    left: 0,
    width: 0
  });
  useEffect(() => {
    const activeButton = tabsRef.current[activeTab];
    if (activeButton) {
      const parent = activeButton.parentElement;
      const parentRect = parent.getBoundingClientRect();
      const btnRect = activeButton.getBoundingClientRect();
      setIndicatorStyle({
        left: btnRect.left - parentRect.left,
        width: btnRect.width
      });
    }
  }, [activeTab]);
  const activeContent = Array.isArray(tabs[activeTab].content) ? tabs[activeTab].content : [tabs[activeTab].content];
  return <div className="w-full py-8 md:py-12 flex flex-col items-center">
      {}
      {title && <h1 className="mb-[32px] text-2xl md:text-[36px] font-semibold text-gray-900 dark:text-white text-center">
          {title}
        </h1>}

      {}
      {tabs.length > 1 && <div className="relative flex p-1 bg-[#F6F7F9] dark:bg-black border border-[#E2E5E8] dark:border-gray-700 rounded-full mb-[48px] md:mb-12 mx-4 h-[54px] items-center gap-2">
          {}
          <div className="absolute top-1 bottom-1 rounded-full bg-white dark:bg-gray-700 shadow-sm transition-all duration-300 ease-in-out" style={{
    left: indicatorStyle.left,
    width: indicatorStyle.width
  }} />
          {tabs.map((tab, idx) => <button key={idx} ref={el => tabsRef.current[idx] = el} onClick={() => setActiveTab(idx)} className={`relative z-10 flex items-center gap-2 px-4 md:px-6 py-2 rounded-full text-xs md:text-sm font-medium transition-colors duration-300 ${activeTab === idx ? "text-gray-900 dark:text-white" : "text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200"}`}>
              {tab.icon && <Icon icon={tab.icon} size={16} color={activeTab === idx ? "#2563eb" : "#9ca1ab"} />}
              {tab.title}
            </button>)}
        </div>}

      {}
      <div className="w-full max-w-[940px] mx-auto px-4">
        <div className={gridClassName}>
          {activeContent.map((card, idx) => <div key={idx}>{card}</div>)}
        </div>
      </div>

      {}
      {tabs[activeTab].allHref && <>
          <style dangerouslySetInnerHTML={{
    __html: `
.carousel-see-all {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 209px !important;
  height: 48px !important;
  background-color: #FFFFFF !important;
  border: 1px solid #F0F1F2 !important;
  border-radius: 9999px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  gap: 8px !important;
  text-decoration: none !important;
  color: #0061D5 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  margin-top: 2rem !important;
}
.carousel-see-all:hover {
  border-color: #E5E7EB !important;
  box-shadow: none !important;
}
.carousel-see-all::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-color: #0061D5;
  -webkit-mask-image: url("https://d3gk2c5xim1je2.cloudfront.net/v7.1.0/light/circle-arrow-right.svg");
  mask-image: url("https://d3gk2c5xim1je2.cloudfront.net/v7.1.0/light/circle-arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
          `
  }} />
          <a href={tabs[activeTab].allHref} className="carousel-see-all">
            {tabs[activeTab].allText}
          </a>
        </>}
    </div>;
};

<div className="article_labels_list" style={{display: 'none'}} dangerouslySetInnerHTML={{__html: "エンドユーザー、概要、記事、新規、製品の利用"}} />

Boxへようこそ。すぐに使い始めたいですか？ 以下の5つのステップに従い、Boxへのログイン、ワークスペースの作成、同僚とのコンテンツの共有方法を学びましょう。

[ステップ1: Boxへのログイン](#step-1-logging-into-box)

[ステップ2: ファイルページの操作](#step-2-navigating-the-files-page)

[ステップ3: ワークスペースの作成](#step-3-creating-a-new-workspace)

[ステップ4: 他者とのコンテンツ共有](#step-4-sharing-content-with-others)

[ステップ5: 整理](#step-5-staying-organized)

<h2 id="step-1-logging-into-box">
  ステップ1: Boxへのログイン
</h2>

最初に、ログイン手順です。

1\. **app.box.com/login** に移動します。

2\. メールアドレスまたはユーザー名を入力します。

3\. パスワードを入力します。パスワードを忘れた場合は、\[パスワードをリセット] リンクをクリックします。

4\. **\[ログイン]** をクリックします。

管理者が組織に対して SSO を有効化または必須にしている場合は、会社の認証情報を使って Box にログインできます。

<h2 id="step-2-navigating-the-files-page">
  ステップ2: \[ファイル] ページの操作
</h2>

ログインすると、Box の **\[ファイル]** ページが表示されます。**\[ファイル]** ページには、自分がアクセスできるすべてのフォルダとファイルが表示されます。

#### フォルダアイコンの見方

フォルダアイコンは、フォルダの所有者とコラボレーションの状態によって異なります。

**アイコンのない黄色のフォルダ** は、自分が所有する個人用フォルダです。

**人物アイコン付きの青いフォルダ** は、社内のユーザーが所有するコラボレーションフォルダです。

**地球アイコン付きのグレーのフォルダ** は、社外のユーザーが所有する外部コラボレーションフォルダです。

#### ファイルまたはフォルダの検索

特定のファイル、またはファイル内の特定の語句を探すには、**\[検索]** ツールを使うとすぐに目的の場所へ移動できます。

ページ上部の検索バーに入力します。Box はファイルやフォルダのタイトルだけでなく、ドキュメント本文も検索します。ヒットが多すぎる場合は、フォルダ、ファイルの種類、日付、コンテンツの種類、所有者などでフィルターしてください。

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508a8da6b9b46d53154f4a0/index.html" title="動画プレーヤー" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

<h2 id="step-3-creating-a-new-workspace">
  ステップ3: ワークスペースの作成
</h2>

Box で新しいフォルダを作成し、コンテンツをアップロードして、同僚と共有する方法を学びます。

#### 新しいフォルダの作成

1\. ページ右上の **\[新規]** をクリックします。

2\. 作成する項目を選択します。

フォルダ、ブックマーク（任意の URL）、Box Note、Microsoft Office ファイル、Google ドキュメントなどを作成できます。表示されるオプションは、自分または管理者が有効にしている設定によって異なる場合があります。

3\. ポップアップで新しいファイルまたはフォルダの名前を入力します。新しいフォルダを作成する場合は、フォルダへコラボレータを招待するよう求められることがあります。招待しない場合、フォルダは非公開のままです。

4\. **\[作成]** をクリックして完了します。

#### ファイルのアップロード

Box 内のファイルとフォルダを参照しているときに、新しいファイルまたはフォルダをアップロードするのは簡単です。

1\. **\[ファイル]** セクションで、ページ右上の **\[新規 +]** をクリックします。

2\. アップロードするものに応じて、**\[ファイルのアップロード]** または **\[フォルダのアップロード]** を選択します。

3\. アップロードするファイル（複数）またはフォルダを選択します。

ファイルを複数選択するときは、Command キー（Mac）または Control キー（Windows）を押しながら選択します。フォルダは一度に 1 つだけアップロードできます。

4\. **\[開く]** または **\[アップロード]** をクリックします。

<h2 id="step-4-sharing-content-with-others">
  ステップ4: 他者とのコンテンツ共有
</h2>

Box では、次の 2 つの主な方法で同僚や関係者とコンテンツを共有できます。

**既存の Box ユーザーをフォルダに招待する** 方法、または

**共有リンクを送信する** 方法です。

#### Box のファイルまたはフォルダにコラボレータを追加する

コラボレータは、ファイルまたはフォルダに招待する相手です。コラボレータとして追加すると、その項目は相手の **\[ファイル]** ページに表示されます。

Box の権限レベルは「ウォーターフォール」方式です。招待されたフォルダとその下位のサブフォルダにのみアクセスできます。個別のファイルへの招待もあります。詳細は、[こちら](/ja/box-fundamentals/for-users/collaborating/collaborating-by-inviting-others)を参照してください。

ファイルまたはフォルダでコラボレーションを招待する手順:

1\. **\[共有]** ウィンドウを開きます。

Box のファイル一覧で、共有したいファイルまたはフォルダの行にマウスを合わせ、右側の **\[共有]** をクリックします。**\[共有]** ウィンドウが開きます。

2\. **\[共有]** ウィンドウの **\[ユーザーを招待]** で、**\[名前またはメールアドレスを追加]** をクリックします。

コラボレータの名前またはメールアドレスを入力します。

入力すると Box が候補を表示します。表示候補から選ぶか、メールアドレスを最後まで入力します。複数の宛先を入力するときは、横方向のスペースで区切ります。

3\. **\[次の役割で招待]** ドロップダウンをクリックします。Box が役割の一覧を表示します。コラボレータに付与する役割をクリックします。

4\. （任意）**\[メッセージ]** フィールドに、最大 750 文字のメッセージを入力します。

5\. **\[送信]** をクリックします。

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508a94aae9532582d6c4cf9/index.html" title="動画プレーヤー" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

#### Box のコンテンツへの共有リンクの送付

共有リンクを使うと、社内外の同僚や連絡先に、Box に保存されたコンテンツへのハイパーリンクをすばやくコピーして共有できます。共有リンクは、共有コンテンツで共同作業するための手段です。

権限レベル、有効期限、オプションのパスワード保護をカスタマイズできるため、重要なコンテンツを安全かつ簡単に共有できます。

共有リンクの作成手順:

1\. Box のファイル一覧で、共有したいファイルまたはフォルダの行にマウスを合わせます。

2\. 右側で（作成して）**\[共有リンクをコピー]** をクリックします（）。**\[共有リンク]** ウィンドウが開きます。

3\. 次のアクセス許可のいずれかを選びます。

**リンクを知っている全員**: リンクがあれば項目にアクセスでき、Box アカウントは不要です。必要に応じてパスワードや有効期限を設定し、ダウンロードやプレビューを制限することもできます。

**会社のユーザー**: 次の両方を満たすユーザーのみがアクセスできます。(1) Box の管理ユーザー（Starter 以上）であること、(2) リンクを作成したアカウントに登録されたドメインと一致するメールアドレスを持つこと。例として、アカウントに acme.com が登録されている場合、acme.com で終わるメールアドレスの管理ユーザーのみがこの種類のリンクにアクセスできます。管理ユーザーであっても、アカウントに登録されていないドメインと一致しない場合はアクセスできません。

**招待されたユーザーのみ**: フォルダまたはファイルに招待されたユーザーのみがコンテンツにアクセスできます。コラボレータはすでにコンテンツへのアクセスがありますが、共有リンクで特定のファイルやフォルダへ案内できます。

4\. 共有リンクの作成時に、受信者が実行できる操作を選びます。管理者が許可した範囲で、次のような操作から選べます。

**編集可能**:

リンクでアクセスできるユーザーは次を行えます。

ファイル、共有フォルダ内のファイル、または Box Note を編集、注釈、コメント

ファイル、フォルダ内のファイル、または Box Note を表示およびダウンロード

自分の Box アカウント内の場所へファイルまたはフォルダをコピー

**表示およびダウンロード可能**:

リンクでアクセスできるユーザーは次を行えます。

ファイル、フォルダ内のファイル、または Box Note を表示およびダウンロード

ファイルまたはフォルダを自分の Box アカウント内の場所へコピー

Box 内では編集できない

**表示のみ可能**:

リンクでアクセスできるユーザーは、Box 内でファイル、フォルダ内のファイル、または Box Note を表示するのみです。

5\. 共有リンクの設定を選んだら、リンクをコピーして、メールやメッセージなど任意のアプリに貼り付けて共有します。

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508aa25ae953207616c4d27/index.html" title="動画プレーヤー" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

<h2 id="step-5-staying-organized">
  ステップ5: 整理
</h2>

#### コレクションとお気に入り

Box コレクションを使うと、よく使うファイルやフォルダへすばやく移動できます。

コレクションでは、自分の Box アカウント内で非公開のコレクションを作成・命名し、自分が所有または共有しているファイルやフォルダを整理できます。コンテンツは共有されていても、コレクション自体は自分だけに表示されます。Box は、お気に入りとあわせてすべてのコレクションを左サイドバーの **\[マイコレクション]** の下に一覧表示します。

新しいコレクションを作成するには、左サイドバーで **\[マイコレクション]** の横の **+** をクリックします。

#### 履歴

**\[履歴]** を使うと、作業の続きにすぐ戻れます。このページでは、Box アカウントで最近更新されたファイルやフォルダが表示されます。最近の更新を表示するには、左サイドバーで **\[履歴]** をクリックします。

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508aa6fae953211d66c4d3e/index.html" title="動画プレーヤー" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

<h2 id="ready-to-keep-learning">
  引き続き学習する
</h2>

<Carousel title="短い動画でもっとスキルアップ" columns={2}>
  <CarouselItem title="短い動画">
    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=09b13ad7116bff9f8604d9f1a6e9e6b4" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6323983489112" title="Box Mobile で外出先から作業" width="1280" height="720" data-path="images/box-fundamentals/image.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-1.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=59d84f1ba9a78f76b4d70ee913b60057" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6325459450112" title="Box Canvas で業務プロセスを可視化" width="1280" height="720" data-path="images/box-fundamentals/image-1.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-2.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=9f0471b4683b8a0f73c9d7be2e079607" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6325458571112" title="Box Canvas でビジュアル共同作業" width="1280" height="720" data-path="images/box-fundamentals/image-2.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-3.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=0ffbd6e9e6f9ddc118db368e7b28c8ee" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6332247466112" title="Slack で Box ファイルを共有・共同編集" width="1280" height="720" data-path="images/box-fundamentals/image-3.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-4.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=3eb79db9309cd400234d81f7813b65e1" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6331400178112" title="Microsoft Teams で Box コンテンツを共有" width="1280" height="720" data-path="images/box-fundamentals/image-4.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-5.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=b885eb23c8c81f5c20b7bdc3d4053c46" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6331401443112" title="Microsoft Teams へ Box コンテンツをアップロード" width="1280" height="720" data-path="images/box-fundamentals/image-5.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-6.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=a57772796b40b0ea4e8a4da1293bd385" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6323983394112" title="Box Relay で日々のワークフローを自動化" width="1280" height="720" data-path="images/box-fundamentals/image-6.jpg" />
  </CarouselItem>
</Carousel>

Box のユーザー向けコースをさらに見る場合は、[こちら](https://training.box.com/pages/user-courses)。

管理者および共同管理者向けのコースをさらに見る場合は、[こちら](https://training.box.com/pages/admin-courses)。
