diff --git a/app/src/main/java/org/ntlab/irisclient/DrawingCardFragment.java b/app/src/main/java/org/ntlab/irisclient/DrawingCardFragment.java
index a7cd24a..94d43b6 100644
--- a/app/src/main/java/org/ntlab/irisclient/DrawingCardFragment.java
+++ b/app/src/main/java/org/ntlab/irisclient/DrawingCardFragment.java
@@ -1,18 +1,26 @@
 package org.ntlab.irisclient;
+import android.content.Context;
+import android.content.res.Resources;
 import android.os.Bundle;
 import android.view.LayoutInflater;
 import android.view.View;
 import android.view.ViewGroup;
+import android.widget.ImageButton;
+import android.widget.ImageView;
 import android.widget.TextView;
 
 import androidx.annotation.NonNull;
 import androidx.annotation.Nullable;
+import androidx.core.content.ContextCompat;
+import androidx.core.content.res.ResourcesCompat;
 import androidx.fragment.app.Fragment;
 import androidx.fragment.app.FragmentManager;
 import androidx.fragment.app.FragmentTransaction;
 
 public class DrawingCardFragment extends Fragment {
 
+
+
     // コンストラクタ
     public static DrawingCardFragment newInstance(String str){
         // インスタンス生成
@@ -24,7 +32,59 @@
     public View onCreateView(LayoutInflater inflater, ViewGroup container,
                              Bundle savedInstanceState) {
         super.onCreateView(inflater, container, savedInstanceState);
-        return inflater.inflate(R.layout.fragment_card_drawing,  container, false);
+        Resources resources = getResources();
+
+        View view = inflater.inflate(R.layout.fragment_card_drawing,  container, false);
+
+        ImageButton imageButton00 = (ImageButton) view.findViewById(R.id.imageButton00);
+        imageButton00.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton01 = (ImageButton) view.findViewById(R.id.imageButton01);
+        imageButton01.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton02 = (ImageButton) view.findViewById(R.id.imageButton02);
+        imageButton02.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton03 = (ImageButton) view.findViewById(R.id.imageButton03);
+        imageButton03.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton10 = (ImageButton) view.findViewById(R.id.imageButton10);
+        imageButton10.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton11 = (ImageButton) view.findViewById(R.id.imageButton11);
+        imageButton11.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton12 = (ImageButton) view.findViewById(R.id.imageButton12);
+        imageButton12.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton13 = (ImageButton) view.findViewById(R.id.imageButton13);
+        imageButton13.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton20 = (ImageButton) view.findViewById(R.id.imageButton20);
+        imageButton20.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton21 = (ImageButton) view.findViewById(R.id.imageButton21);
+        imageButton21.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton22 = (ImageButton) view.findViewById(R.id.imageButton22);
+        imageButton22.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton23 = (ImageButton) view.findViewById(R.id.imageButton23);
+        imageButton23.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton30 = (ImageButton) view.findViewById(R.id.imageButton30);
+        imageButton30.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton31 = (ImageButton) view.findViewById(R.id.imageButton31);
+        imageButton31.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton32 = (ImageButton) view.findViewById(R.id.imageButton32);
+        imageButton32.setBackground(resources.getDrawable(R.drawable.test02));
+
+        ImageButton imageButton33 = (ImageButton) view.findViewById(R.id.imageButton33);
+        imageButton33.setBackground(resources.getDrawable(R.drawable.test02));
+
+        return view;
     }
 
     @Override